将我的窗口添加到其他应用程序的窗口
我需要将 NSWindow 作为子窗口添加到其他应用程序的窗口中。
我想用 - (void)addChildWindow:(NSWindow *)childWindow returned:(NSWindowOrderingMode)orderingMode
但我知道该窗口的 ID。我如何获取该窗口的 windowRef?
I need to add my NSWindow as a child to window of other application.
I want to use- (void)addChildWindow:(NSWindow *)childWindow ordered:(NSWindowOrderingMode)orderingMode
But I know the ID of that window. How I can get windowRef of that window?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些窗口不属于您,因此您不会获得使用此方法所需的窗口引用。最好的选择是使用辅助功能 API 来观看所需的窗口,并在目标窗口移动或调整大小时将您自己的窗口移动到所需的位置。
Those windows don't belong to you so you're not going to get the window reference you need to use this method. Your best bet is to use the Accessibility API to watch the desired window and move your own window to the desired position when the target window is moved or resized.