| 
									
										
										
										
											1994-10-07 09:55:26 +00:00
										 |  |  | from Tkinter import * | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Test(Frame): | 
					
						
							|  |  |  |     def createWidgets(self): | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 	self.Gpanel = Frame(self, width='1i', height='1i', | 
					
						
							|  |  |  | 			    background='green')  | 
					
						
							|  |  |  | 	self.Gpanel.pack(side=LEFT) | 
					
						
							| 
									
										
										
										
											1994-10-07 09:55:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	# a QUIT button | 
					
						
							| 
									
										
										
										
											1996-07-30 18:57:18 +00:00
										 |  |  | 	self.Gpanel.QUIT = Button(self.Gpanel, text='QUIT',  | 
					
						
							|  |  |  | 				  foreground='red', | 
					
						
							|  |  |  | 				  command=self.quit) | 
					
						
							|  |  |  | 	self.Gpanel.QUIT.pack(side=LEFT) | 
					
						
							| 
									
										
										
										
											1994-10-07 09:55:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     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() |