diff options
author | Guido van Rossum <guido@python.org> | 1994-10-07 09:55:26 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-10-07 09:55:26 (GMT) |
commit | 35820f77e41a8a41a695e08c041eed5e2e2ff3ef (patch) | |
tree | 2bf45f05d7530067911726bf9a3e56b453d49db5 /Demo/tkinter/matt/not-what-you-might-think-2.py | |
parent | 884657af490e79e8e4a3038b439af9713cb64bc8 (diff) | |
download | cpython-35820f77e41a8a41a695e08c041eed5e2e2ff3ef.zip cpython-35820f77e41a8a41a695e08c041eed5e2e2ff3ef.tar.gz cpython-35820f77e41a8a41a695e08c041eed5e2e2ff3ef.tar.bz2 |
Matt's examples
Diffstat (limited to 'Demo/tkinter/matt/not-what-you-might-think-2.py')
-rw-r--r-- | Demo/tkinter/matt/not-what-you-might-think-2.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Demo/tkinter/matt/not-what-you-might-think-2.py b/Demo/tkinter/matt/not-what-you-might-think-2.py new file mode 100644 index 0000000..dd6c2ec --- /dev/null +++ b/Demo/tkinter/matt/not-what-you-might-think-2.py @@ -0,0 +1,37 @@ +from Tkinter import * + + +class Test(Frame): + def createWidgets(self): + + self.Gpanel = Frame(self, {'width': '1i', + 'height' : '1i', + 'bg' : 'green'}) + + # this line turns off the recalculation of geometry by masters. + self.Gpanel.tk.call('pack', 'propagate', str(self.Gpanel), "0") + + 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() |