gpt4 book ai didi

python - wxPython 中的应用程序停靠图标

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

在 Mac OS X 上的 wxPython 中,启动应用程序时可以显示自定义图标。现在,当我启动我编写的应用程序时,码头中会显示一个空白的白色图标。我该如何改变它?

最佳答案

我的设置文件中有这个来添加图标:

from setuptools import setup

APP = ['MyApp.py']
DATA_FILES = []
OPTIONS = {'argv_emulation': True,
'iconfile': 'MyAppIcon.icns' }

setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)

我认为你必须使用 icns 文件。我用过img2icns创建一个。

关于python - wxPython 中的应用程序停靠图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/824458/

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