Tk Development Demo

Description

Create the "large" chunks of the layout (frames?). Uses different sizes and colors for the background. Later, after more has been filled in, the background colors and sizes will be removed.

# ========================================================
# (reminder to fill in header information)
# ========================================================

# --- imports

from tkinter import *

# --- root window
 
root = Tk()
root.title('Drawing Program')

# --- frame to hold everything

f = Frame(root, relief='flat' padx=4, pady=4, bg='red', width=500, height=500)
f.grid(row=0, column=0, sticky=N+S+E+W)

# -- main loop

mainLoop()