Tkinter Checkbutton麻烦

时间:2015-12-09 10:55:17

标签: python tkinter

即时运行这个小python脚本(使用tkinter),我遇到意外行为。

    import Tkinter as tk

    master = tk.Tk()

    def toggleComp():
        print "toggled."

    compVar = tk.IntVar()

    check_comp = tk.Checkbutton(master, text="Specify Compostition:",variable=compVar,command=toggleComp).grid(row=3,column=0,sticky=tk.W,padx=20)

    print isinstance(check_comp,tk.Checkbutton)

最后一个打印行返回'False'。 我原本期待'真'了。

任何人都可以澄清吗?

谢谢!

0 个答案:

没有答案