Class around PixMap objects that allows more python-like access. By Joe Strout.
[python/dscho.git] / Demo / tkinter / matt / window-creation-simple.py
blob969fefb18699eeb24237325edc438153d6df5437
1 from Tkinter import *
3 # this shows how to spawn off new windows at a button press
5 class Test(Frame):
6 def printit(self):
7 print "hi"
9 def makeWindow(self):
10 fred = Toplevel()
11 fred.label = Label(fred, text="Here's a new window")
12 fred.label.pack()
14 def createWidgets(self):
15 self.QUIT = Button(self, text='QUIT', foreground='red',
16 command=self.quit)
18 self.QUIT.pack(side=LEFT, fill=BOTH)
20 # a hello button
21 self.hi_there = Button(self, text='Make a New Window',
22 command=self.makeWindow)
23 self.hi_there.pack(side=LEFT)
25 def __init__(self, master=None):
26 Frame.__init__(self, master)
27 Pack.config(self)
28 self.createWidgets()
30 test = Test()
31 test.mainloop()