4

如何Checkbutton在 python 中获取 a 的状态?我有这个:

def doSomething():

  if #code goes here, if checkbutton is selected
   ...

check = Checkbutton(window, text="Add both", onvalue = 1, offvalue = 0)
check.pack(side="right")
4

1 回答 1

7

您需要将Checkbox与变量相关联:

is_checked = IntVar()
check = Checkbutton(window, text="Add both", onvalue=1, offvalue=0, variable=is_checked)

然后利用做你的检查,例如:

if is_checked.get():
    # do something
于 2013-05-27T18:15:59.537 回答