Option menu : Menu « Tkinker « Python Tutorial






Option menu
from Tkinter import *
root = Tk()
var1 = StringVar()
var2 = StringVar()
opt1 = OptionMenu(root, var1, 'spam', 'eggs',  'toast')     # like Menubutton
opt2 = OptionMenu(root, var2, 'ham',  'bacon', 'sausage')   # but shows choice
opt1.pack(fill=X)
opt2.pack(fill=X)
var1.set('spam')
var2.set('ham')
def state(): print var1.get(), var2.get()                   # linked variables
Button(root, command=state, text='state').pack()
root.mainloop()








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