NSWindow - 显示始终位于当前窗口顶部的新窗口
我希望我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 NSWindow 的 addChildWindow:ordered: 或 setParentWindow: 方法将另一个窗口添加为第一个窗口的子窗口。该窗口将跟随第一个窗口。请参阅 NSWindow 类参考< /a>.
Use
NSWindow
'saddChildWindow:ordered:
orsetParentWindow:
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.您可以将窗口级别设置为 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.
这对我有用,希望有帮助
This worked for me, hope that will be helpful