判断NSMenu是否打开

发布于 2024-10-10 17:58:37 字数 84 浏览 1 评论 0原文

我有一个 NSMenu,当用户单击状态栏中的 NSStatusItem 时,它会打开。如何确定 NSMenu 是否打开(展开)?

谢谢你!

I have an NSMenu which opens when a user clicks an NSStatusItem in the status bar. How can I determine if the NSMenu is opened (expanded) or not?

Thank you!

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

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

发布评论

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

评论(1

冷夜 2024-10-17 17:58:37

您可以使用 NSMenuDelegate 协议来处理 menuWillOpenmenuWillClose 消息。使用 menuWillOpen 设置一个布尔值来表明菜单已打开,并使用 menuWillClose 将其关闭。


更新: 看起来menuWillClose: 不再是可用的委托方法。使用 menuDidClose: 代替。

You can use the NSMenuDelegate protocol to handle menuWillOpen and menuWillClose messages. Use menuWillOpen to set a boolean that states that the menu is open, and menuWillClose to turn it off.


Update: Looks like menuWillClose: is no longer an available delegate method. Use menuDidClose: instead.

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