source: python/trunk/Demo/tkinter/matt/window-creation-simple.py

Last change on this file was 2, checked in by Yuri Dario, 15 years ago

Initial import for vendor code.

  • Property svn:eol-style set to native
File size: 815 bytes
Line 
1from Tkinter import *
2
3# this shows how to spawn off new windows at a button press
4
5class Test(Frame):
6 def printit(self):
7 print "hi"
8
9 def makeWindow(self):
10 fred = Toplevel()
11 fred.label = Label(fred, text="Here's a new window")
12 fred.label.pack()
13
14 def createWidgets(self):
15 self.QUIT = Button(self, text='QUIT', foreground='red',
16 command=self.quit)
17
18 self.QUIT.pack(side=LEFT, fill=BOTH)
19
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)
24
25 def __init__(self, master=None):
26 Frame.__init__(self, master)
27 Pack.config(self)
28 self.createWidgets()
29
30test = Test()
31test.mainloop()
Note: See TracBrowser for help on using the repository browser.