4

我想使用 TkInter 在 Python 中创建一个复选框列表,并尝试使用一个按钮选择所有复选框。

from tkinter import *
def create_cbuts():
for i in cbuts_text:
    cbuts.append(Checkbutton(root, text = i).pack())

def select_all():
    for j in cbuts:
        j.select()

root = Tk()
cbuts_text = ['a','b','c','d']
cbuts = []
create_cbuts()
Button(root, text = 'all', command = select_all()).pack()
mainloop()

我担心他没有填写清单cbuts

cbuts.append(Checkbutton(root, text = i).pack())
4

2 回答 2

5

这是正确的代码

from tkinter import *

def create_cbuts():
    for index, item in enumerate(cbuts_text):
        cbuts.append(Checkbutton(root, text = item))
        cbuts[index].pack()

def select_all():
    for i in cbuts:
        i.select()

def deselect_all():
    for i in cbuts:
        i.deselect()

root = Tk()

cbuts_text = ['a','b','c','d']
cbuts = []
create_cbuts()
Button(root, text = 'all', command = select_all).pack()
Button(root, text = 'none', command = deselect_all).pack()
mainloop()
于 2012-07-15T17:17:08.500 回答
3

代替:

Button(root, text = 'all', command = select_all()).pack()

和:

Button(root, text='all', command=select_all).pack()

Checkbutton(root, text = i).pack()回报你None。因此,您实际上是将Nones 附加到您的列表中。您需要做的是:附加Button不是.pack()返回值的实例(None

于 2012-07-15T08:23:01.693 回答