mirror of
https://github.com/Afacanc38/gtk-examples-python.git
synced 2024-11-15 03:05:05 +03:00
10 lines
158 B
Python
10 lines
158 B
Python
|
import gi
|
||
|
|
||
|
gi.require_version("Gtk", "3.0")
|
||
|
from gi.repository import Gtk
|
||
|
|
||
|
win = Gtk.Window()
|
||
|
win.connect("destroy", Gtk.main_quit)
|
||
|
win.show_all()
|
||
|
Gtk.main()
|