adds callbacks function to a button : Event : GUI Tk PYTHON examples


PYTHON examples » GUI Tk » Event »

 

adds callbacks function to a button


adds callbacks function to a button
 
import sys
from Tkinter import *
widget = Button(None, text='Hello', command=sys.exit)
widget.pack()
widget.mainloop()


           
         
  



Leave a Comment / Note


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


PYTHON examples

 Navioo GUI Tk
» Event