tkinter maximum window size

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

showing results for - "tkinter maximum window size"
Caius
18 Feb 2018
1from tkinter import *
2root = Tk()
3root.maxsize(height, width)
4root.minsize(height, width) #(69, 420)
5root.mainloop()