Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: cadb4c842b99e01fb0d1ab31d5c32e3e94d643db authored by cvs2svn on 15 January 2002, 22:34:58 UTC
This commit was manufactured by cvs2svn to create tag 'r212'.
Tip revision: cadb4c8
not-what-you-might-think-1.py
from Tkinter import *


class Test(Frame):
    def createWidgets(self):

	self.Gpanel = Frame(self, width='1i', height='1i',
			    background='green') 
	self.Gpanel.pack(side=LEFT)

	# a QUIT button
	self.Gpanel.QUIT = Button(self.Gpanel, text='QUIT', 
				  foreground='red',
				  command=self.quit)
	self.Gpanel.QUIT.pack(side=LEFT)


    def __init__(self, master=None):
	Frame.__init__(self, master)
	Pack.config(self)
	self.createWidgets()

test = Test()

test.master.title('packer demo')
test.master.iconname('packer')

test.mainloop()
back to top