/Demo/tkinter/matt/canvas-demo-simple.py

http://unladen-swallow.googlecode.com/ · Python · 28 lines · 17 code · 9 blank · 2 comment · 0 complexity · 2660d19d06e26b092b15126c7ebc5075 MD5 · raw file

  1. from Tkinter import *
  2. # this program creates a canvas and puts a single polygon on the canvas
  3. class Test(Frame):
  4. def printit(self):
  5. print "hi"
  6. def createWidgets(self):
  7. self.QUIT = Button(self, text='QUIT', foreground='red',
  8. command=self.quit)
  9. self.QUIT.pack(side=BOTTOM, fill=BOTH)
  10. self.draw = Canvas(self, width="5i", height="5i")
  11. # see the other demos for other ways of specifying coords for a polygon
  12. self.draw.create_rectangle(0, 0, "3i", "3i", fill="black")
  13. self.draw.pack(side=LEFT)
  14. def __init__(self, master=None):
  15. Frame.__init__(self, master)
  16. Pack.config(self)
  17. self.createWidgets()
  18. test = Test()
  19. test.mainloop()