固定对象位于 NSWindow 右侧

发布于 2024-11-27 00:57:34 字数 113 浏览 0 评论 0原文

我在 NSWindow 上创建了一个 NSView。我试图将视图“停靠”到窗口的右侧,这样当我缩放窗口时,视图将始终保持在右侧。

有什么建议吗?

I have created an NSView on an NSWindow. I'm trying to "dock" the view to the right side of the window, so that when I scale the window the view will always stay on the right side.

Any suggestions?

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

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

发布评论

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

评论(2

素年丶 2024-12-04 00:57:34

为父窗口的 NSWindowDidResizeNotification 通知添加观察者,并相应地调整子窗口的框架。

Add an observer for the NSWindowDidResizeNotification notification of your parent window and adjust your child window's frame accordingly.

绝不放开 2024-12-04 00:57:34

使用

[myView setAutoResizingMask: NSViewMaxXMargin | NSViewMaxYMargin];

这应该使视图保持在其超级视图的右上角。如果您想要整个右侧,请使用 NSViewMaxXMargin | NSViewHeightSizeable | NSViewHeightSizeable | NSViewHeightSizeable NSViewMinYMargin | NSViewMinYMargin | NSViewMinYMargin NSViewMaxYMargin 代替。它将固定在右侧,顶部和底部将随超级视图调整大小。现在只需将其放在正确的位置,它就会留在那里。

Use

[myView setAutoResizingMask: NSViewMaxXMargin | NSViewMaxYMargin];

That should keep the view in the upper right corner of its superview. If you want the entire right side, use NSViewMaxXMargin | NSViewHeightSizeable | NSViewMinYMargin | NSViewMaxYMargin instead. It will be anchored to the right side and the top and bottom will resize with the superview. Now just place it on the right spot and it should stay there.

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