A child of root window : Frame « GUI Tk « Python
- Python
- GUI Tk
- Frame
A child of root window

from Tkinter import *
root = Tk()
t1 = Toplevel(root)
Label(t1, text='This is a child of root').pack(padx=10, pady=10)
root.mainloop()
Related examples in the same category