我已经尝试了几个examples from stackoverflow,但不幸的是,这对我不起作用。
我只想获取Tkinter,Python的选定checkButton的值。
我有一个CheckButton列表,如下所示
## csv file has rows like
# 101, apple
# 102, orange
for row in csvReader:
checkButton = Checkbutton(top, text = row[1], variable = StringVar(),
onvalue = row[0], offvalue = "0", height=2, \
width = 0, justify=Tkinter.LEFT)
checkButton.pack()
checkBoxList.append(checkButton)
单击表单中的按钮时,此处是需要获取复选框的选中值的回调。
def btnStartCallBack():
for chkBox in checkBoxList:
print chkBox.variable().get()
# also tried below
# print chkBox.get()
# print chkBox.var()
# print chkBox.onvalue.get()
它返回:
AttributeError: Checkbutton instance has no attribute 'variable'
我只想知道在选择CheckButton时是否有可能获得CheckButton的值。我应该在哪个属性上寻找这个?
答案 0 :(得分:2)
我通常在课堂上做我的GUI,比如http://zetcode.com/。我会做像
这样的事情self.v = StringVar()
self.cb1 = CheckButton( self, text=row[1], variable=self.v )
然后再开始......
self.v.get()
我认为您可能需要在代码中以不同方式声明variable
。 Bon chasse!