Tkinter How To Disable Window Resizing

[Solved] Tkinter How To Disable Window Resizing | Python - Code Explorer | yomemimo.com
Question : tkinter how to disable window resizing

Answered by : zain-mwmtky2vck9l

# window.resizeable(width_bool,height_bool)
window.resizeable(FALSE,FALSE)
# window variable will typically be "root"
# See http://tkdocs.com/tutorial/windows.html#:~:text=window.resizable(FALSE%2CFALSE)

Source : http://tkdocs.com/tutorial/windows.html#wm | Last Update : Fri, 07 Jan 22

Question : how to disable resizing in tkinter

Answered by : odysseas

#root=tk()
root.resizable(False, False)

Source : | Last Update : Fri, 26 Mar 21

Answers related to tkinter how to disable window resizing

Code Explorer Popular Question For Python