有没有办法强制 AppKit 在窗口菜单中包含我的无边框 NSWindow 子类?

发布于 2024-11-05 21:33:47 字数 146 浏览 0 评论 0原文

我有一个无边框 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 技术交流群。

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

发布评论

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

评论(1

对你的占有欲 2024-11-12 21:33:47

使用 -[NSApplication addWindowsItem:title:filename:] 并手动将窗口添加到“窗口”菜单。例如:

YourBorderlessWindow *window = …;
[NSApp addWindowsItem:window title:[window title] filename:NO];

Use -[NSApplication addWindowsItem:title:filename:] and manually add the window to the Window menu. For instance:

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