3
from gi.repository import Gtk
#print Gtk.GTK_MAJOR_VERSION
win = Gtk.Window()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()
這是我的代碼,我怎麼知道正在使用哪個版本的Gtk。Python和Gtk--正在使用哪個GTK版本?
謝謝!
謝謝,成功了! –
鏈接到那些想知道的文檔:https://developer.gnome.org/pygtk/stable/gtk-constants.html; https://developer.gnome.org/gtk3/stable/gtk3-Feature-Test-Macros.html – user3467349