pythonware.com | products ::: library ::: search ::: daily Python-URL! |
Toplevel Window MethodsChapter 45. Toplevel Window MethodsThis group of methods are used to communicated with the window manager. They are available on the root window (Tk), as well as on all Toplevel instances. Note that different window managers behave in different ways. For example, some window managers don't support icon windows, some don't support window groups, etc. Visibility Methodsdeiconifydeiconify(). Display the window. New windows are displayed by default, so you only have to use this method if you have used iconify or withdraw to remove the window from the screen. iconifyiconify(). Turn the window into an icon (without destroying it). To redraw the window, use deiconify. Under Windows, the window will show up in the taskbar. When the window has been iconified, the state method returns "iconic". withdrawwithdraw(). Remove the window from the screen (without destroying it). To redraw the window, use deiconify. When the window has been withdrawn, the state method returns "withdrawn". statestate(). Returns the current state of self. This is one of the values "normal", "iconic" (see iconify), "withdrawn" (see withdraw) or "icon" (see iconwindow). |