Server IP : 66.29.132.122 / Your IP : 18.116.40.28 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/lib64/python2.7/Demo/tkinter/matt/ |
Upload File : |
from Tkinter import * # This is a program that makes a simple two button application class New_Button(Button): def callback(self): print self.counter self.counter = self.counter + 1 def createWidgets(top): f = Frame(top) f.pack() f.QUIT = Button(f, text='QUIT', foreground='red', command=top.quit) f.QUIT.pack(side=LEFT, fill=BOTH) # a hello button f.hi_there = New_Button(f, text='Hello') # we do this on a different line because we need to reference f.hi_there f.hi_there.config(command=f.hi_there.callback) f.hi_there.pack(side=LEFT) f.hi_there.counter = 43 root = Tk() createWidgets(root) root.mainloop()