Wrap GUI design in a class : Action : Tkinker PYTHON TUTORIALS


PYTHON TUTORIALS » Tkinker » Action »

 

Wrap GUI design in a class


from Tkinter import *
     
class HelloPackage:                         
    def __init__(self, parent=None):
        self.top = Frame(parent)            
        self.top.pack()
        self.data = 0
        self.make_widgets()                 
    def make_widgets(self):
        Button(self.top, text='Bye', command=self.top.quit).pack(side=LEFT)
        Button(self.top, text='Hye', command=self.message).pack(side=RIGHT)
    def message(self):
        self.data += 1
        print 'Hello number', self.data
     
HelloPackage().top.mainloop()



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo Tkinker
» Action