Cautionary Note: Th following list is not 100% complete, please scroll to the bottom to see some additions and notes as to further omitions. Additions will be added to the end of the list, out of alphebetical order for now, notes about others which are missing will appear at the page bottom.

A complete list of events in wxPython can be retrieved using the following code:

import wx

for x in dir(wx):
  if x.startswith('EVT_'):
      print x

(from http://assistedsilicon.blogspot.com/2007/10/what-are-all-wxpython-events.html)

Here is a complete list (taken from wxPython 2.8.7.1):

Also missing are some events from the Grid Sizer module, but as yet I am uncertain what they are.

ListOfEvents (last edited 2012-09-21 14:07:52 by adsl-108-195-138-53)

NOTE: To edit pages in this wiki you must be a member of the TrustedEditorsGroup.