我使用Tkinter製作菜單,但我想將"add_checkbutton"
而不是"add_command"
放入菜單選項,但問題是:我如何取消選擇/選擇複選框?使用Tkinter中的Checkbutton製作菜單選項?
menu = Menu(parent)
parent.config(menu=menu)
viewMenu = Menu(menu)
menu.add_cascade(label="View", menu=viewMenu)
viewMenu.add_command(label = "Show All", command=self.showAllEntries)
viewMenu.add_command(label="Show Done", command= self.showDoneEntries)
viewMenu.add_command(label="Show Not Done", command = self.showNotDoneEntries)
您的意思是手動(使用鼠標)還是以編程方式?通過編程方式編程爲 – 2010-10-14 02:38:21
。 – itsaboutcode 2010-10-14 03:09:26