Reputation: 1
i'm working tkinter , python 3.7 on Windows , wondering if there way remove tk() window border frame , title bar without using overrideredirect(1).
i have own close button , overrideredirect(1) presents me few issues can't accept:
1.gui on top
2.can't iconify deiconify properly
no keyboard input can't type fields
screen disappers when out of focus
there is no icon at the taskbar when overideredirect(1) is used.
i can't use attributes("-fullscreen", true) titlebar , borders remain plus i want my window to be movable so fullscreen doesn't help.
Upvotes: 0
Views: 256
Reputation: 385970
wondering if there way remove tk() window border frame , title bar without using overrideredirect(1)
No, there is not. Using overrideredirect
is the only way to do it.
Upvotes: 0