| always on top |
UserPreferences |
| Tkinter Wiki | FrontPage | RecentChanges | TitleIndex | WordIndex | SiteNavigation | HelpContents | moin.sf.net |
One question that often arises is how to make a specific ?toplevel stay on top in the sense of its visual stacking. With recent Tkinter (certainly 2.4--also 2.3? Earlier?), it's enough to write something like
from Tkinter import *
root = Tk()
root.wm_attributes('-topmost', 1)
The
Tcl Wiki has more on the subject. 'Twould be a fine thing for someone to TranslateTcl the pertinent content there into this page.