有没有办法强制 AppKit 在窗口菜单中包含我的无边框 NSWindow 子类?
我有一个无边框 NSWindow
子类,我将其用作基于文档的应用程序的一部分。我一直无法找到一种方法将其包含在“窗口”菜单中。创建窗口时调用 setExcludedFromWindowsMenu:
没有任何效果。有什么想法吗?
I have a borderless NSWindow
subclass that I use as part of a document based application. I have not been able to find a way to get it included in the Window menu. Calling setExcludedFromWindowsMenu:
when the window is created has no effect. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
-[NSApplication addWindowsItem:title:filename:]
并手动将窗口添加到“窗口”菜单。例如:Use
-[NSApplication addWindowsItem:title:filename:]
and manually add the window to the Window menu. For instance: