tkinter max size

Solutions on MaxInterview for tkinter max size by the best coders in the world

showing results for - "tkinter max size"
Oskar
19 Oct 2016
1from tkinter import *
2root = Tk()
3root.maxsize(height, width)
4root.minsize(height, width) #(69, 420)
5root.mainloop()