如何在 GTK3 (PyGObject) 中动态更新小部件?

How to update widget dynamically in GTK3 (PyGObject)?

在此示例中,我尝试在每次按下按钮时添加另一个按钮(或任何小部件)。

from gi.repository import Gtk


class ButtonWindow(Gtk.Window):
    def __init__(self):
        super().__init__(title="Button Demo")
        self.hbox = Gtk.HBox()
        self.add(self.hbox)
        button = Gtk.Button.new_with_label("Click Me")
        button.connect("clicked", self.on_clicked)
        self.hbox.pack_start(button, False, True, 0)

    def on_clicked(self, button):
        print("This prints...")
        button = Gtk.Button.new_with_label("Another button")
        self.hbox.pack_start(button, False, True, 0)  # ... but the new button doesn't appear


win = ButtonWindow()
win.connect("destroy", Gtk.main_quit)
win.show_all()
Gtk.main()

我已经尝试了 queue_draw() 和其他技巧,但到目前为止没有任何效果。

调用 show_all() 方法可以更新小部件的子项。这是使用了 show_all() 的代码,并相应地标记了添加的行:

from gi.repository import Gtk


class ButtonWindow(Gtk.Window):
    def __init__(self):
        super().__init__(title="Button Demo")
        self.hbox = Gtk.HBox()
        self.add(self.hbox)
        button = Gtk.Button.new_with_label("Click Me")
        button.connect("clicked", self.on_clicked)
        self.hbox.pack_start(button, False, True, 0)

    def on_clicked(self, button):
        print("This prints...")
        button = Gtk.Button.new_with_label("Another button")
        self.hbox.pack_start(button, False, True, 0)
        self.hbox.show_all() ### ADDED LINE


win = ButtonWindow()
win.connect("destroy", Gtk.main_quit)
win.show_all()
Gtk.main()

因此,调用 self.hbox.show_all() 会显示 self.hbox 的所有子项。