Master list of all Tkinter Events? Master list of all Tkinter Events? tkinter tkinter

Master list of all Tkinter Events?


There is no such list as far as I know. There is a list of most events on the bind man page, but each widget can itself issue events unique to that widget (eg: <<ListboxSelect>>). Those are documented on the man page for each widget.


We had this discussion on the tkinter mailing list, and found the following:

Summarized in the wiki: tkinter:Events


I found a more complete listing of known events, including some marked as "Undocumented", in Python's own tkinter module. Start here, and scroll down to class EventType:https://github.com/python/cpython/blob/master/Lib/tkinter/init.py

Whether that's the penultimate list or not....who knows. It seems Tk/Tkinter documentation is spread fairly thinly, like vegemite on toast, across the entirety of the Internet.