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

Last change on this file was 3225, checked in by bird, 19 years ago

Python 2.5

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