1994-10-07 06:55:26 -03:00
|
|
|
from Tkinter import *
|
|
|
|
|
|
|
|
|
|
|
|
class Test(Frame):
|
|
|
|
def printit(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
print self.hi_there["command"]
|
1994-10-07 06:55:26 -03:00
|
|
|
|
|
|
|
def createWidgets(self):
|
2004-07-18 03:16:08 -03:00
|
|
|
# a hello button
|
|
|
|
self.QUIT = Button(self, text='QUIT', foreground='red',
|
|
|
|
command=self.quit)
|
|
|
|
self.QUIT.pack(side=LEFT, fill=BOTH)
|
1994-10-07 06:55:26 -03:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
self.hi_there = Button(self, text='Hello',
|
|
|
|
command=self.printit)
|
|
|
|
self.hi_there.pack(side=LEFT)
|
1994-10-07 06:55:26 -03:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
# note how Packer defaults to side=TOP
|
1994-10-07 06:55:26 -03:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
self.guy2 = Button(self, text='button 2')
|
|
|
|
self.guy2.pack()
|
1994-10-07 06:55:26 -03:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
self.guy3 = Button(self, text='button 3')
|
|
|
|
self.guy3.pack()
|
1994-10-07 06:55:26 -03:00
|
|
|
|
|
|
|
def __init__(self, master=None):
|
2004-07-18 03:16:08 -03:00
|
|
|
Frame.__init__(self, master)
|
|
|
|
Pack.config(self)
|
|
|
|
self.createWidgets()
|
1994-10-07 06:55:26 -03:00
|
|
|
|
|
|
|
test = Test()
|
|
|
|
test.mainloop()
|