作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试将 checkbutton 小部件与 bool 变量一起使用。当我使用不带类的脚本时,它可以工作,但是当我将应用程序编写为类时,它就不行了。这是我的代码:
from tkinter import Tk, Frame, Checkbutton, Button
class MyFrame(Frame):
def __init__(self, parent):
Frame.__init__(self, parent)
self.parent = parent
self.test01 = False
checkbutton = Checkbutton(parent, text='check it', variable=self.test01, command=self.testcheck)
checkbutton.var = self.test01
checkbutton.pack()
testbutton = Button(parent, text='check test', command=self.testcheck)
testbutton.pack()
self.parent.title('Checkbutton test')
def testcheck(self):
print('Check test: ' + str(self.test01))
def main():
root = Tk()
app = MyFrame(root)
root.mainloop()
if __name__ == '__main__':
main()
在图片中您可以看到带有程序输出的终端。在图片中的情况下,应用程序已启动,并且切换检查按钮和按测试按钮的每种组合都没有结果。
我尝试在构造函数中链接变量,然后在构造按钮之后链接变量,两者都没有结果。
最佳答案
使用BooleanVar
。要获取状态,请使用 {variable}.get()
。
from tkinter import Tk, Frame, Checkbutton, Button, BooleanVar
class MyFrame(Frame):
def __init__(self, parent):
Frame.__init__(self, parent)
self.parent = parent
self.test01 = BooleanVar()
checkbutton = Checkbutton(parent, text='check it',
variable=self.test01, command=self.testcheck)
checkbutton.pack()
testbutton = Button(parent, text='check test', command=self.testcheck)
testbutton.pack()
self.parent.title('Checkbutton test')
def testcheck(self):
print('Check test: ' + str(self.test01.get()))
def main():
root = Tk()
app = MyFrame(root)
root.mainloop()
if __name__ == '__main__':
main()
关于python - 如何将复选按钮与变量绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41497201/
我是一名优秀的程序员,十分优秀!