Tutorial by Examples

Tk is the absolute root of the application, it is the first widget that needs to be instantiated and the GUI will shut down when it is destroyed. Toplevel is a window in the application, closing the window will destroy all children widgets placed on that window{1} but will not shut down the program...
The most basic case to lift a particular window above the others, just call the .lift() method on that window (either Toplevel or Tk) import tkinter as tk #import Tkinter as tk #change to commented for python2 root = tk.Tk() for i in range(4): #make a window with a label window = tk...

Page 1 of 1