Customtkinter how to disable window resize

Free Python Code - Aug 18 '23 - - Dev Community


import customtkinter as ctk

win = ctk.CTk()
win.geometry('520x300')
win.resizable(width = False, height = False)


win.mainloop()
Enter fullscreen mode Exit fullscreen mode
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .