Answers for "disable window resize tkinter"

8

tkinter how to make a root non rezizable

root.resizable(False, False)
Posted by: Guest on May-26-2020
7

tkinter make window not resizable

root.resizable(False, False)
Posted by: Guest on December-09-2020
-1

how to disable resizing in tkinter

#root=tk()
root.resizable(False, False)
Posted by: Guest on March-19-2021
1

how to make a resizable python tkinter window have a limit

win.wm_minsize(180, 120)
#Change the two numbers to the minimum window width and minimum window height.
Posted by: Guest on September-01-2020

Code answers related to "disable window resize tkinter"

Python Answers by Framework

Browse Popular Code Answers by Language