tags:

views:

17

answers:

1

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?

+1  A: 

http://docs.wxwidgets.org/stable/wx_wxframe.html#wxframe

Steven Sproat
Thanks! From the link you gave me, I realized I could also use the style parameters defined by wx.Frame's base classes.
Kit