Getting a listing of all wxPython events is possible using:
import wx
for x in dir(wx):
if x.startswith('EVT_'):
print x
How do I get the list of all style parameters used in defining the wx.Frame style bitmask?
Getting a listing of all wxPython events is possible using:
import wx
for x in dir(wx):
if x.startswith('EVT_'):
print x
How do I get the list of all style parameters used in defining the wx.Frame style bitmask?