列表框tkinter中的复选框

时间:2017-02-22 19:42:40

标签: python tkinter listbox

from tkinter import *
root=Tk()
root.geometry('50x50')
scrol=Scrollbar(root)
scrol.pack(side=RIGHT,fill=Y)
x=Listbox(root,yscrollcommand=scrol.set)
z=[Checkbutton(x,text=i) for i in range(100)]
for i in z:
    x.insert(END,i)
    i.pack()
scrol.config(command=x.yview)
x.pack()
root.mainloop()

嗨大家我上面的代码有问题,遗憾的是在运行此代码后,它只返回一组数字而不是一组支票。我对这段代码做错了什么

1 个答案:

答案 0 :(得分:0)

您无法在复选框中插入复选框。列表框只能包含文本。