Create additional windows: use the Toplevel widget. : Top Level « GUI Tk « Python






Create additional windows: use the Toplevel widget.

Create additional windows: use the Toplevel widget.
from Tkinter import *
    
root = Tk()
    
top = Toplevel()
    
root.mainloop()

           
       








Related examples in the same category