gpt4 book ai didi

python - wxpython 中的 wx.ICON_ 选项列表

转载 作者:太空宇宙 更新时间:2023-11-03 13:22:45 25 4
gpt4 key购买 nike

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

目前我已经找到了

wx.ICON_INFORMATION
wx.ICON_EXCLAMATION

如果您知道这样的列表,将不胜感激。或者,请留下任何未包含的内容。

谢谢

最佳答案

python自省(introspection)有多美:

>>> 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']
>>>

关于python - wxpython 中的 wx.ICON_ 选项列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8851001/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com