mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
Updated for Python 1.4
This commit is contained in:
parent
c30e95f4b0
commit
89cb67bb64
43 changed files with 731 additions and 961 deletions
|
@ -11,22 +11,18 @@ class New_Button(Button):
|
|||
def createWidgets(top):
|
||||
f = Frame(top)
|
||||
f.pack()
|
||||
f.QUIT = Button(f, {'text': 'QUIT',
|
||||
'fg': 'red',
|
||||
'command': top.quit})
|
||||
|
||||
f.QUIT.pack({'side': 'left', 'fill': 'both'})
|
||||
f.QUIT = Button(f, text='QUIT', foreground='red', command=top.quit)
|
||||
|
||||
f.QUIT.pack(side=LEFT, fill=BOTH)
|
||||
|
||||
# a hello button
|
||||
f.hi_there = New_Button(f, {'text': 'Hello'})
|
||||
f.hi_there = New_Button(f, text='Hello')
|
||||
# we do this on a different line because we need to reference f.hi_there
|
||||
f.hi_there.config({'command' : f.hi_there.callback})
|
||||
f.hi_there.pack({'side': 'left'})
|
||||
f.hi_there.config(command=f.hi_there.callback)
|
||||
f.hi_there.pack(side=LEFT)
|
||||
f.hi_there.counter = 43
|
||||
|
||||
|
||||
|
||||
root = Tk()
|
||||
createWidgets(root)
|
||||
root.mainloop()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue