I tried win.overrideredirect(True)
it didn't work...
My Code goes like this:
from tkinter import *
win = Tk()
win.resizable(0,0)
win.wm_protocol("WM_SAVE_YOURSELF", lambda: print("On exit"))
Label(win, text="Tk Window").pack()
win.mainloop()
Specs: Python 3.9.6 [Latest], Pip 21.1.3, OS: Windows 10 Home
I want to make the minimize button to be disabled... Please help