gpt4 book ai didi

python - 如何将复选按钮与变量绑定(bind)

转载 作者:行者123 更新时间:2023-11-30 22:44:32 25 4
gpt4 key购买 nike

我尝试将 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()

The checkbutton problem

在图片中您可以看到带有程序输出的终端。在图片中的情况下,应用程序已启动,并且切换检查按钮和按测试按钮的每种组合都没有结果。

我尝试在构造函数中链接变量,然后在构造按钮之后链接变量,两者都没有结果。

最佳答案

使用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()

enter image description here

关于python - 如何将复选按钮与变量绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41497201/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com