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?