Python 3.4.3,Windows 10,Tkinter
我正在尝试创建一个组合框,以允许从下拉列表中进行多个选择.我发现列表框(Python Tkinter multiple selection Listbox)的工作类似,但无法使其与组合框一起工作.
是否有一种简单的方法可以从组合框的下拉菜单中进行多项选择?
解决方法:
通过设计,ttk组合框不支持多个选择.它旨在允许您从选项列表中选择一项.
如果您需要做出多个选择,则可以使用带有关联菜单的菜单按钮,并在菜单中添加复选按钮或单选按钮.
这是一个例子:
import Tkinter as tk
class Example(tk.Frame):
def __init__(self, parent):
tk.Frame.__init__(self, parent)
menubutton = tk.Menubutton(self, text="Choose wisely",
indicatoron=True, borderwidth=1, relief="raised")
menu = tk.Menu(menubutton, tearoff=False)
menubutton.configure(menu=menu)
menubutton.pack(padx=10, pady=10)
self.choices = {}
for choice in ("Iron Man", "Superman", "Batman"):
self.choices[choice] = tk.IntVar(value=0)
menu.add_checkbutton(label=choice, variable=self.choices[choice],
onvalue=1, offvalue=0,
command=self.printValues)
def printValues(self):
for name, var in self.choices.items():
print "%s: %s" % (name, var.get())
if __name__ == "__main__":
root = tk.Tk()
Example(root).pack(fill="both", expand=True)
root.mainloop()