| Widgets/Spinbox |
UserPreferences |
| Tkinter Wiki | FrontPage | RecentChanges | TitleIndex | WordIndex | SiteNavigation | HelpContents | moin.sf.net |
A spinbox is an extended entry widget that allows the user to move, or spin, through a fixed set of ascending or descending values such as times or dates
1 2 3 4 5 6 7 | from Tkinter import * root = Tk() spin = Spinbox(root, from_ = 0, to = 100) spin.pack() root.mainloop() |
http://effbot.org/tkinterbook/spinbox.htm
http://www.purl.org/tcl/home/man/tcl8.4/TkCmd/spinbox.htm