我不能在gtk3(python3)中使用标签,它不起作用并且不会出错。
这是我的尝试:
from gi.repository import Gtk
window = Gtk.Window(title="About")
window.set_border_width(10)
window.connect("destroy", lambda w: Gtk.main_quit())
hbox = Gtk.Box(spacing=6)
window.add(hbox)
lbl=gtk.Label("add")
hbox.pack_start(lbl, True, True, 0)
lbl2=gtk.Label("add")
hbox.pack_start(lbl2, True, True, 0)
lbl3=gtk.Label("add")
hbox.pack_start(lbl3, True, True, 0)
lbl4=gtk.Label("add")
hbox.pack_start(lbl4, True, True, 0)
def ex(button1):
exit()
button2 = Gtk.Button.new_with_label("Exit")
button2.connect("clicked", ex)
hbox.pack_start(button2, True, True, 0)
window.show_all()
Gtk.main()
有什么问题?