刚刚开始使用 PyGTK 和 Glade3,希望得到一些帮助。
容器层次结构:窗口 -> vbox1 -> {button1 , label1}
button1 回调
on_button1_clicked(self, widget):
print "Hello World!" #This sends the output to the console
widget.set_label("Hello World!") #This updates button1's label
#I'd like to update label1's label as well in the same callback
我知道这可以使用 label1.set_text(string) 来完成,但我不知道如何检索该对象有什么想法?
来自肯塔基的感谢。