在 NSMenuItem 中添加 NSSubmenu 项
我想在 NSMenu 项的其中一个条目中添加一个下拉菜单。 (例如,如果您单击 Finder 栏上的电池指示器,它会显示“显示”->“图标、时间、百分比”选项)。 现在,我使用以下代码添加一个 MenuItem:
menuItem = [menu addItemWithTitle:@"Start"
action:@selector(start:) keyEquivalent:@""];
[menuItem setTarget:self];
How do I add a submenu Item with this drop down list ?谢谢。
I want to add a drop down menu in one of the entries in the NSMenu Item. (eg. If you click on the Battery indicator on Finder bar, it has an option for Show->Icon,Time,Percentage).
Now I add a MenuItem using the following code:
menuItem = [menu addItemWithTitle:@"Start"
action:@selector(start:) keyEquivalent:@""];
[menuItem setTarget:self];
How do I add a submenu Item with this drop down list ? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我向 NSMenu 项目添加子菜单的方法:
This is how I add a submenu to an NSMenu item:
成功了。使用数组中的内容创建了一个 NSPopuButton,然后在此处使用它。
Got it working. Created a NSPopuButton with contents from an array and then used that here.