Base Windows : TK Root Window « GUI Tk « Python






Base Windows

 
from Tkinter import *

root = Tk()
    
# create window contents as children to root...
    
root.mainloop()


           
         
  








Related examples in the same category

1.Bind keyboard action with root
2.Set options shared by all Tk widgets(font, colors, etc.)