Subclass user-defined button class and redefined press-handler method : Control « Tkinker « Python Tutorial

Home
Python Tutorial
1.Introduction
2.Data Type
3.Statement
4.Operator
5.String
6.Tuple
7.List
8.Dictionary
9.Collections
10.Function
11.Class
12.File
13.Buildin Function
14.Buildin Module
15.Database
16.Regular Expressions
17.Thread
18.Tkinker
19.wxPython
20.XML
21.Network
22.CGI Web
23.Windows
Python Tutorial » Tkinker » Control 
18.9.1.Subclass user-defined button class and redefined press-handler method
Subclass user-defined button class and redefined press-handler method
from Tkinter import *
     
class HelloButton(Button):
    def __init__(self, parent=None, **config):
        Button.__init__(self, parent, config)
        self.pack()
        self.config(command=self.callback)
    def callback(self):          
        print 'Goodbye world...
        self.quit()
     
class MyButton(HelloButton)
    def callback(self):      
        print "pressed"
     
MyButton(None, text='Hello subclass world').mainloop()
18.9.Control
18.9.1.Subclass user-defined button class and redefined press-handler methodSubclass user-defined button class and redefined press-handler method
18.9.2.Extend frame classExtend frame class
18.9.3.Add widgets to extended frameAdd widgets to extended frame
18.9.4.Use extended frame classUse extended frame class
18.9.5.Extend frame class the second timeExtend frame class the second time
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.