删除 OS X 应用程序上的首选项菜单项
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了其他可能遇到此问题的人的利益,我找到了解决方案:“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.