mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Matt's examples
This commit is contained in:
parent
884657af49
commit
35820f77e4
33 changed files with 1876 additions and 0 deletions
32
Demo/tkinter/matt/not-what-you-might-think-1.py
Normal file
32
Demo/tkinter/matt/not-what-you-might-think-1.py
Normal file
|
@ -0,0 +1,32 @@
|
|||
from Tkinter import *
|
||||
|
||||
|
||||
class Test(Frame):
|
||||
def createWidgets(self):
|
||||
|
||||
self.Gpanel = Frame(self, {'width': '1i',
|
||||
'height' : '1i',
|
||||
'bg' : 'green'})
|
||||
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()
|
Loading…
Add table
Add a link
Reference in a new issue