删除 OS X 应用程序上的首选项菜单项

发布于 2024-11-14 16:13:56 字数 64 浏览 1 评论 0原文

使用 wxPython 时,是否可以删除或禁用在 OS X 上的 Python 菜单中自动创建的“首选项”菜单项?

When using wxPython, is it possible to remove or disable the "Preferences" menu item that gets automatically created in the Python menu on OS X?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感性 2024-11-21 16:13:56

为了其他可能遇到此问题的人的利益,我找到了解决方案:“wx.App_SetMacPreferencesMenuItemId(wx.ID_NONE)”。诀窍是在创建菜单之前而不是之后执行此操作。在 wxPython 2.9.1.1 上,它会隐藏 Preferences 菜单项(这对我来说已经足够好了)。在 2.9.2 上,它将完全删除该项目。

For the benefit of others that may run into this, I figured out the solution: "wx.App_SetMacPreferencesMenuItemId(wx.ID_NONE)". The trick is to do this before you create the menu, not after. On wxPython 2.9.1.1 it will ghost out the Preferences menu item (which is good enough for me). On 2.9.2 it will remove the item completely.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文