我正在尝试使用python和tkinter来创建一个运行已在复选框中选中的程序的程序。
import sys
from tkinter import *
import tkinter.messagebox
def runSelectedItems():
if checkCmd == 0:
labelText = Label(text="It worked").pack()
else:
labelText = Label(text="Please select an item from the checklist below").pack()
checkBox1 = Checkbutton(mGui, variable=checkCmd, onvalue=1, offvalue=0, text="Command Prompt").pack()
buttonCmd = Button(mGui, text="Run Checked Items", command=runSelectedItems).pack()
这是代码,但我不明白为什么它不起作用?
感谢。
答案 0 :(得分:10)
您需要为变量使用IntVar
:
checkCmd = IntVar()
checkCmd.set(0)
def runSelectedItems():
if checkCmd.get() == 0:
labelText = Label(text="It worked").pack()
else:
labelText = Label(text="Please select an item from the checklist below").pack()
checkBox1 = Checkbutton(mGui, variable=checkCmd, onvalue=1, offvalue=0, text="Command Prompt").pack()
buttonCmd = Button(mGui, text="Run Checked Items", command=runSelectedItems).pack()
在其他新闻中,这个成语:
widget = TkinterWidget(...).pack()
不是很好。在这种情况下,widget
始终为None
,因为这是Widget.pack()
返回的内容。通常,您应该创建窗口小部件,并通过2个单独的步骤使其了解几何管理器。 e.g:
checkBox1 = Checkbutton(mGui, variable=checkCmd, onvalue=1, offvalue=0, text="Command Prompt")
checkBox1.pack()