![]() |
|
|
+ Search |
![]()
|
Jan 29th, 2005 06:10
Eric Wood, Keith Jones,
Easily. You have to give them different names (duh) You can have as many as you want. Here's the code: #import Tkinter and set up root window from Tkinter import * root = Tk() app = Frame(root) app.grid() #create canvases c1 = Canvas(app) c1.grid() c2 = Canvas(app) c2.grid() root.mainloop()