I’m developing a tkinter application and would like to remove the title bar while keeping the window border intact and preserving the taskbar icon. Setting the window to full-screen or hiding the taskbar icon isn’t desirable for my application.
I’ve tried solutions involving overrideredirect(True)
, but this removes both the title bar and the window border. Is there a way to achieve this on Windows (and ideally cross-platform) while still allowing the window to be resizable and draggable?