faqts : Computers : Programming : Languages : Python : Tkinter

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

20 of 21 people (95%) answered Yes
Recently 9 of 10 people (90%) answered Yes

Entry

Is it possible to set the minimum size of the window?

May 27th, 2000 20:57
unknown unknown, Robert Roy


Try this:

import Tkinter
root = Tkinter.Tk()
root.minsize(400,200)
Tkinter.Button(root, text='Hello").pack()
root.mainloop()


also see
maxsize and geometry