mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Adding Fredrik Lundh's demo of the option menu.
This commit is contained in:
parent
f5745008d2
commit
fe78cc0f7e
1 changed files with 27 additions and 0 deletions
27
Demo/tkinter/guido/optionmenu.py
Normal file
27
Demo/tkinter/guido/optionmenu.py
Normal file
|
@ -0,0 +1,27 @@
|
|||
# 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()
|
Loading…
Add table
Add a link
Reference in a new issue