如何摆脱 wxWidgets 中的默认 macOS 菜单项?
“切换侧边栏”是我添加的唯一项目,如何删除我真正不需要的其他项目?我被困
在 macOS 12.2 上,使用 wxWidgets v3.1.5
这是我用来添加菜单的代码:
wxMenuBar *mainMenuBar = new wxMenuBar();
wxMenu *viewMenu = new wxMenu();
viewMenu->Append(wxID_ANY, "Toggle Sidebar");
mainMenuBar->Append(viewMenu, "&View");
this->SetMenuBar(mainMenuBar);
"Toggle Sidebar" is the only item I have added, how do I remove the other items which I don't really need? I'm stuck
I'm on macOS 12.2 with wxWidgets v3.1.5
here's the code I used to add the menu:
wxMenuBar *mainMenuBar = new wxMenuBar();
wxMenu *viewMenu = new wxMenu();
viewMenu->Append(wxID_ANY, "Toggle Sidebar");
mainMenuBar->Append(viewMenu, "&View");
this->SetMenuBar(mainMenuBar);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在(还没有,但很快就会发布)wx 3.1.7 中,默认情况下不会再发生这种情况,因为 此问题刚刚得到解决。
In (not yet, but to be soon, released) wx 3.1.7 this won't happen by default any longer, as this issue just got resolved.
正如评论中所述,首先在框架上调用
SetMenuBar()
然后附加菜单解决了该问题。As said in the comments, calling
SetMenuBar()
on the frame first and then appending the menus fixed the issue.