Remove titlebar from Tkinter window

Asked

Viewed 186 times

2

Good evening, the question is: how to shoot the title bar from the Tk window without making it background, which is what overrideredirect(True) does?

With various researches, I saw that this line could help:

root.wm_attributes('-type', 'splash')

But the "-type" parameter is not recognized.

The code below for example, does the promised with overrideredirect(True)

from tkinter import *
Root = Tk()
Root.overrideredirect(True)
Root.mainloop()

But note that the window icon does not even appear in the windows taskbar, IE, can not even minimize.

Any solution to this?

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.