3 # this program creates a canvas and puts a single polygon on the canvas
9 def createWidgets(self
):
10 self
.QUIT
= Button(self
, text
='QUIT', foreground
='red',
12 self
.QUIT
.pack(side
=BOTTOM
, fill
=BOTH
)
14 self
.draw
= Canvas(self
, width
="5i", height
="5i")
16 # see the other demos for other ways of specifying coords for a polygon
17 self
.draw
.create_rectangle(0, 0, "3i", "3i", fill
="black")
19 self
.draw
.pack(side
=LEFT
)
21 def __init__(self
, master
=None):
22 Frame
.__init
__(self
, master
)