Python Forum

Full Version: Removing window borders
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to have a borderless window in tkinter but keep the title bar? If overrideredirect(1)' is used it removes all including the title bar. Is it possible to keep the top title bar but remove the window's side and bottom border.
I figured it out... thank you.

I needed to add the line:
root.wm_state("zoomed")