gpt4 book ai didi

python - 复选框/组合框的 Tkinter 下拉列表

转载 作者:太空狗 更新时间:2023-10-30 01:33:21 25 4
gpt4 key购买 nike

我正在尝试用 Python 创建一个后处理数据应用程序,我正在使用 Tkinter 为此设计 GUI。

我不知道 Tkinter 是否支持由复选框组成的下拉列表,然后您可以从中选择多个复选框。下图反射(reflect)了我试图描述的内容:

enter image description here

这可能吗?

最佳答案

这不是您想要的,但希望对您有所帮助。

from Tkinter import *

top = Tk()

mb= Menubutton ( top, text="CheckComboBox", relief=RAISED )
mb.grid()
mb.menu = Menu ( mb, tearoff = 0 )
mb["menu"] = mb.menu

Item0 = IntVar()
Item1 = IntVar()
Item2 = IntVar()

mb.menu.add_checkbutton ( label="Item0", variable=Item0)
mb.menu.add_checkbutton ( label="Item1", variable=Item1)
mb.menu.add_checkbutton ( label="Item2", variable=Item2)


'''This part is only for testing
def Item_test():
if Item0.get() == True:
print "Item0 True"
elif Item0.get() == False:
print "Item0 False"
else:
print Item0.get()
if Item1.get() == True:
print "Item1 True"
elif Item1.get() == False:
print "Item1 False"
else:
print Item1.get()
if Item2.get() == True:
print "Item2 True"
elif Item2.get() == False:
print "Item2 False"
else:
print Item2.get()

button1 = Button(top, text="Item True/False Test", command = Item_test)
button1.pack()
'''

mb.pack()
top.mainloop()

关于python - 复选框/组合框的 Tkinter 下拉列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33781047/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com