wxpython中的wx.ICON_选项列表

Ana*_*ake 3 python icons wxpython

我很难找到wxpython中所有内置图标的列表.

到目前为止我发现了

wx.ICON_INFORMATION
wx.ICON_EXCLAMATION
Run Code Online (Sandbox Code Playgroud)

如果你知道这样的清单,我将不胜感激.或者,请保留未包含的任何内容.

谢谢

joa*_*uin 7

python内省有多美:

>>> import wx
>>> mod = dir(wx)
>>> [item for 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']
>>> 
Run Code Online (Sandbox Code Playgroud)