Answers for "tkinter no resize"

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
2

how to resize tkinter window

import tkinter

window = tkinter.Tk()       # creating the window object
window.title('my first GUI program')
window.minsize(width=600, height=500)    # makes the window 500*600

window.mainloop()           # keeping the window until we close it
Posted by: Guest on February-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language