Transient window of root : Frame : GUI Tk PYTHON examples


PYTHON examples » GUI Tk » Frame »

 

Transient window of root


Transient window of root


from Tkinter import *

root = Tk()
t2 = Toplevel(root)
Label(t2, text='This is a transient window of root').pack(padx=10, pady=10)
t2.transient(root)

root.mainloop()

           
       



Leave a Comment / Note


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


PYTHON examples

 Navioo GUI Tk
» Frame