Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: b022eb54e6544499c9f689a3b4343380d28c8852 authored by cvs2svn on 22 March 1995, 12:27:16 UTC
This commit was manufactured by cvs2svn to create tag 'r12beta4'.
Tip revision: b022eb5
packer-simple.py
from Tkinter import *


class Test(Frame):
    def printit(self):
	print self.hi_there["command"]

    def createWidgets(self):
	# a hello button
	self.QUIT = Button(self, {'text': 'QUIT', 
				  'fg': 'red', 
				  'command': self.quit})
	
	self.QUIT.pack({'side': 'left', 'fill': 'both'})


	self.hi_there = Button(self, {'text': 'Hello', 
				      'command' : self.printit})
	self.hi_there.pack({'side': 'left'})

	# note how Packer defaults to {'side': 'top'}

	self.guy2 = Button(self, {'text': 'button 2'})
	self.guy2.pack()

	self.guy3 = Button(self, {'text': 'button 3'})
	self.guy3.pack()

    def __init__(self, master=None):
	Frame.__init__(self, master)
	Pack.config(self)
	self.createWidgets()

test = Test()
test.mainloop()
back to top