Mega Code Archive

 
Categories / Python Tutorial / Tkinker
 

Bind actions

from Tkinter  import *       def showPosEvent(event):     print 'Widget=%s X=%s Y=%s' % (event.widget, event.x, event.y)       def onKeyPress(event):     print 'Got key press:', event.char       tkroot = Tk() labelfont = ('courier', 20, 'bold')                 widget = Label(tkroot, text='Hello bind world') widget.config(bg='red', font=labelfont)             widget.config(height=5, width=20)                   widget.pack(expand=YES, fill=BOTH) widget.bind('<KeyPress>',  onKeyPress)              widget.focus()                                      tkroot.title('Click Me') tkroot.mainloop()