![]() |
|
|
+ Search |
![]()
|
Apr 22nd, 2002 07:16
Mark Paschal, Arun Kumar, http://www.pythonware.com/library/tkinter/introduction/x9843-style-methods.htm
Use overrideredirect(1) to turn off window stuff like title bars: import Tkinter root = Tkinter.Tk() root.overrideredirect(1) addSplashImageOrWhatever(root) root.mainloop() Have some event that does a root.overrideredirect(0) and/or a root.quit().