1

这个问题开始是一个简单的 Python 3.x 问题,但现在我不确定发生了什么。当我在 shell 中运行以下代码时,它工作正常。当我在 PyScripter 中运行它时,结果总是 0 0。以前有人见过这个问题吗?我对常见问题解答和错误报告的搜索没有找到任何结果。

# Simple CheckButton example
# CH 3/24/13

import tkinter as tk
root = tk.Tk()

#function to display checkbutton values
def showVal():
    print(cb1Val.get(), cb2Val.get())

# define value variables
# cb1Val and cb2Val hold 1 if checked and 0 if not
cb1Val = tk.IntVar()
cb2Val = tk.IntVar()

# make instances of my widgets
cb1 = tk.Checkbutton(root, text='cb1', variable=cb1Val)
cb2 = tk.Checkbutton(root, text='cb2', variable=cb2Val)

btn1 = tk.Button(root, text='Show', command=showVal)

# place widgets into the frame
cb1.grid(row=0,column=0)
cb2.grid(row=1, column=0)
btn1.grid(row=2, column=0)

#start the loop
root.mainloop()
4

0 回答 0