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