mirror of
https://github.com/Afacanc38/gtk-examples-python.git
synced 2024-11-14 18:55:05 +03:00
9 lines
158 B
Python
9 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()
|