Disable a menu item : Menu « GUI Tk « Python






Disable a menu item

Disable a menu item
from Tkinter import *

class TestMenu:
    def __init__(self, master):
  self.master = master
  self.menubar = Menu(self.master)

        self.cmdmenu = Menu(self.menubar)
        self.cmdmenu.add_command(label="Undo")
        self.cmdmenu.entryconfig(1, state=DISABLED)

        self.unused = Menu(self.menubar)
        
        self.menubar.add_cascade(label="Button Command", menu=self.cmdmenu)

  self.top = Toplevel(menu=self.menubar, width=500, relief=RAISED,
                            borderwidth=2)

def main():
    root = Tk()
    root.withdraw()
    app = TestMenu(root)
    root.mainloop()

if __name__ == '__main__':
    main()


           
       








Related examples in the same category

1.A big menu bar
2.Set up menu and add action to it
3.Set menu item font
4.Menu item mouse on (active) foreground colorMenu item mouse on (active) foreground color
5.Underline for menu item textUnderline for menu item text
6.Menu separatorMenu separator
7.Cascade MenuCascade Menu
8.Disable a menuDisable a menu
9.Creating a small menuCreating a small menu
10.Menu separator 2 and menu action
11.Menu actionMenu action
12.Add menu to a windowAdd menu to a window
13.A Simple Form with Menu
14.Three Menu inside a formThree Menu inside a form
15.Framework for a single document interfaceFramework for a single document interface
16.3 popup windows with menus3 popup windows with menus
17.Menu/tool bars packed before middleMenu/tool bars packed before middle