| author | keith.hutchin <keith.hutchin@accenture.com> |
| Tue, 28 Sep 2010 11:13:28 +0100 | |
| changeset 118 | b0012dceb754 |
| parent 1 | 2fb8b9db1c86 |
| permissions | -rw-r--r-- |
# option menu sample (Fredrik Lundh, September 1997) from Tkinter import * root = Tk() # # standard usage var1 = StringVar() var1.set("One") # default selection menu1 = OptionMenu(root, var1, "One", "Two", "Three") menu1.pack() # # initialize from a sequence CHOICES = "Aah", "Bee", "Cee", "Dee", "Eff" var2 = StringVar() var2.set(CHOICES[0]) menu2 = apply(OptionMenu, (root, var2) + tuple(CHOICES)) menu2.pack() root.mainloop()