2010-08-17 76 views
0

剛剛開始使用PyGTK和Glade3,並會喜歡一些幫助。PyGTK更新兄弟小部件標籤

容器層次結構: 窗口 - > 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(串)來完成,但我不知道如何檢索該對象的任何想法?

來自肯塔基州的感謝。的

+0

可能重複的[\ [GTK +生成器\]麻煩更新標籤文本](http://stackoverflow.com/questions/3508075/gtk-builder-trouble-updating-label-text) – anthony 2010-08-18 02:05:36

回答

1
label = builder.get_object('label1') 
label.set_text('foobar')