gtk-examples-python/vanilla-gtk/1-first-step.py

9 lines
157 B
Python
Raw Normal View History

2021-08-30 15:04:52 +03:00
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()
2021-10-30 19:16:20 +03:00
Gtk.main()