faqts : Computers : Programming : Languages : Python : Tkinter

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

26 of 28 people (93%) answered Yes
Recently 10 of 10 people (100%) answered Yes

Entry

how to hide the title bar in Tkinter, while calling the Tkinter.Tk()

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().