A child of root window : Frame : GUI Tk PYTHON examples


PYTHON examples » GUI Tk » Frame »

 

A child of root window


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()


           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo GUI Tk
» Frame