Mega Code Archive

 
Categories / Python / GUI Tk
 

Set frame size

from Tkinter import * root = Tk() frame = Frame(root, width=100, height=100) frame.pack() root.mainloop()