作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试用 Python 创建一个后处理数据应用程序,我正在使用 Tkinter 为此设计 GUI。
我不知道 Tkinter 是否支持由复选框组成的下拉列表,然后您可以从中选择多个复选框。下图反射(reflect)了我试图描述的内容:
这可能吗?
最佳答案
这不是您想要的,但希望对您有所帮助。
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/
我是一名优秀的程序员,十分优秀!