小编use*_*101的帖子

从python tkinter中的Checkbox获取输入?

我正在尝试使用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()
Run Code Online (Sandbox Code Playgroud)

这是代码,但我不明白为什么它不起作用?

谢谢.

python checkbox tkinter input

7
推荐指数
1
解决办法
2万
查看次数

标签 统计

checkbox ×1

input ×1

python ×1

tkinter ×1