NSWindow - 显示始终位于当前窗口顶部的新窗口

发布于 2024-11-24 16:57:36 字数 103 浏览 1 评论 0原文

我希望我的 NSWindow 显示始终位于当前窗口顶部的新窗口。它们不应该位于其他窗口的顶部。

此外,当原始窗口移动时,它们不应该移动。

我怎样才能做到这一点?

I want my NSWindow to show new window(s) that will always be on top of current window. they should NOT be on top of other windows.

In addition, they should not move when the original window moves.

How can i do that?

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

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

发布评论

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

评论(3

囍孤女 2024-12-01 16:57:36

使用 NSWindow 的 addChildWindow:ordered: 或 setParentWindow: 方法将另一个窗口添加为第一个窗口的子窗口。该窗口将跟随第一个窗口。请参阅 NSWindow 类参考< /a>.

Use NSWindow's addChildWindow:ordered: or setParentWindow: method to add the other window as a child of the first window. That window will follow the first window around. See the NSWindow Class Reference.

七颜 2024-12-01 16:57:36

您可以将窗口级别设置为 NSFloatingWindowLevel,使其始终位于顶部。
为了防止窗口覆盖其他应用程序,您可以将其级别设置为 NSNormalWindowLevel 或者完全隐藏它。尝试使用 applicationWillResignActive: 方法 (NSApplicationDelegate Protocol) 来删除您的窗口顶部。要捕捉应该将窗口重新置于顶部的时刻,请使用 applicationWillBecomeActive: 方法。

You can set window level to NSFloatingWindowLevel so it always be on top.
To prevent window from covering other applications you can set its level to NSNormalWindowLevel or you can hide it at all. Try to use applicationWillResignActive: method (NSApplicationDelegate Protocol) to remove your window from top. To catch the moment when you shoud bring your window back on top use applicationWillBecomeActive: method.

少女七分熟 2024-12-01 16:57:36

这对我有用,希望有帮助

[self.window makeKeyAndOrderFront:nil];
[self.window setLevel:NSStatusWindowLevel];

This worked for me, hope that will be helpful

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