python - list of wx.ICON_ options in wxpython -
python - list of wx.ICON_ options in wxpython -
i having difficulty finding list of of inbuilt icons in wxpython.
so far have found
wx.icon_information wx.icon_exclamation
if knew of such list, much appreciated. alternatively please leave have not been included.
thank you
how beautiful python introspection:
>>> import wx >>> mod = dir(wx) >>> [item item in mod if item.startswith('icon_')] ['icon_asterisk', 'icon_error', 'icon_exclamation', 'icon_hand', 'icon_information', 'icon_mask', 'icon_question', 'icon_stop', 'icon_warning'] >>>
python icons wxpython
Comments
Post a Comment