NSStatusItem 内 WebView 的自定义右键菜单

发布于 2024-10-27 04:57:53 字数 124 浏览 1 评论 0原文

我有一个嵌入在 NSStatusItem 中的 WebView,当用户右键单击 WebView / NSStatusItem 时,我想显示我在 Interface Builder 中构建的 NSMenu。做到这一点最简单的方法是什么?

I have a WebView embedded in an NSStatusItem, and I want to display an NSMenu that I've built in Interface Builder when the user right clicks on the WebView / NSStatusItem. What is the easiest way to do this?

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

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

发布评论

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

评论(2

灰色世界里的红玫瑰 2024-11-03 04:57:53

您可以指定一个对象作为 Web 视图的 WebUIDelegate 并实现此委托方法:

- (NSArray *)webView:(WebView *)sender contextMenuItemsForElement:(NSDictionary *)element defaultMenuItems:(NSArray *)defaultMenuItems

您可以在其中返回包含自定义创建的菜单项的数组。

You can assign an object as the web view's WebUIDelegate and implement this delegate method:

- (NSArray *)webView:(WebView *)sender contextMenuItemsForElement:(NSDictionary *)element defaultMenuItems:(NSArray *)defaultMenuItems

where you can return array with custom created menu items.

从﹋此江山别 2024-11-03 04:57:53
[statusItem setMenu:menu];

或者右键单击,创建 nsview 的新子类。在您的子类中添加方法:

(void)rightMouseUp:(NSEvent *)theEvent

然后您可以将视图设置为 statusItem [statusItem setView:view];

[statusItem setMenu:menu];

or for right click, make a new subclass of nsview. In your subclass add the method:

(void)rightMouseUp:(NSEvent *)theEvent

Then you can set the view to the statusItem [statusItem setView:view];

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