DEV Community

Free Python Code
Free Python Code

Posted on

Customtkinter how to disable window resize


import customtkinter as ctk

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


win.mainloop()
Enter fullscreen mode Exit fullscreen mode

Top comments (0)