How to prevent Tkinter frame resize?

Markus Weihs mweihs at gmx.at
Fri Apr 22 16:52:56 EDT 2005


Hi!

I think what you want is maxsize():


from Tkinter import *

root = Tk()
root.maxsize(100,100)
root.mainloop()


Regards, Mark




More information about the Python-list mailing list