Python - Tkinter Place Method
Python - Tkinter Place Method
This geometry manager organizes widgets by placing them in a specific position in the parent
widget.
Syntax
widget.place( place_options )
bordermode − INSIDE (the default) to indicate that other options refer to the parent's
inside (ignoring the parent's border); OUTSIDE otherwise.
Example
Try the following example by moving cursor on different buttons −
import tkMessageBox
import Tkinter
top = Tkinter.Tk()
def helloCallBack():
B.pack()
top.mainloop()
When the above code is executed, it produces the following result −