summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter/matt/not-what-you-might-think-1.py
blob: 6f5481edd39b9a9c6e13946b7fbd5849173cb0cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from Tkinter import *


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

	self.Gpanel = Frame(self, {'width': '1i', 
				   'height' : '1i',
				   'bg' : 'green'}) 
	self.Gpanel.pack({'side' : 'left'})


	# a QUIT button
	self.Gpanel.QUIT = Button(self.Gpanel, {'text': 'QUIT', 
						'fg': '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()