tkinter minsize

Solutions on MaxInterview for tkinter minsize by the best coders in the world

showing results for - "tkinter minsize"
Andy
13 Apr 2016
1from tkinter import *
2root = Tk()
3root.maxsize(height, width)
4root.minsize(height, width) #(69, 420)
5root.mainloop()