Menu separator : Menu « GUI Tk « Python






Menu separator

Menu separator
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='New...', underline=0)
        self.cmdmenu.add_command(label='Open...', underline=0)
        self.cmdmenu.add_command(label='Wild Font', underline=0,
                         font=('Tempus Sans ITC', 14))
#        self.cmdmenu.add_command(bitmap="someBitMap")
        self.cmdmenu.add('separator')

        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.Disable a menu itemDisable a menu item
4.Set menu item font
5.Menu item mouse on (active) foreground colorMenu item mouse on (active) foreground color
6.Underline for menu item textUnderline for menu item text
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