Starndard File Menu : Menu « Tkinker « Python Tutorial






Starndard File Menu
from Tkinter import *

class MenuTest :
    def NewFile(self) :
        print "Creating a new file.."
    def OpenFile(self) :
        print "Opening an existing file..."
    def Close(self) :
        self.root.destroy()
    def notdone(self) :
        print "Not done yet!!"
    def __init__(self) :
        self.root = Tk()

        self.main_menu = Menu(self.root)
        self.root.config( menu = self.main_menu )

        fileMenu = Menu(self.main_menu)

        self.main_menu.add_cascade( label="e", menu=fileMenu )

        fileMenu.add_command( label="w", command=self.NewFile )
        fileMenu.add_command( label="n", command=self.OpenFile )
        fileMenu.add_separator()
        fileMenu.add_command( label="t", command=self.Close )

        toolMenu = Menu(self.main_menu)
        self.main_menu.add_cascade( label="s", menu=toolMenu )
        toolMenu.add_command( label="1", command=self.notdone )
        submenu = Menu(toolMenu)
        toolMenu.add_cascade( label="s", menu=submenu)
        submenu.add_command(label="Other 1", command=self.notdone)
        submenu.add_command(label="Other 2", command=self.notdone)

        self.root.mainloop()

mt = MenuTest()








18.20.Menu
18.20.1.File menuFile menu
18.20.2.MenuBars with ChiocesMenuBars with Chioces
18.20.3.Menu commandMenu command
18.20.4.Add Menu item by adding commandAdd Menu item by adding command
18.20.5.Starndard File MenuStarndard File Menu
18.20.6.Context MenusContext Menus
18.20.7.Add action command to menu itemAdd action command to menu item
18.20.8.Frame-based menus: for top-levels and componentsFrame-based menus: for top-levels and components
18.20.9.3 menus nested in the containers3 menus nested in the containers
18.20.10.2 menus nested in one window2 menus nested in one window
18.20.11.Tk8.0 style top-level window menusTk8.0 style top-level window menus
18.20.12.3 popup windows with menus3 popup windows with menus
18.20.13.Option menuOption menu