NSWindow 设置框架高于屏幕

发布于 2024-11-15 04:57:40 字数 194 浏览 1 评论 0原文

我需要帮助。我有一个像 Adium 这样带有垂直滑块的应用程序。但我的应用程序会根据内容更改窗口高度。如果屏幕高度小于我的应用程序的窗口高度,我的窗口会自动降低高度。

当我尝试对窗口使用 setFrame 并将 window.frame.size.height 设置为高于屏幕高度时,什么也不会发生。

那么问题来了:如何设置窗框高于屏幕高度?

I need help. I have an app like Adium with vertical sliders. But my app change the window height, depending on content. In case if the Screen height less than my app'a window height my window reduces the height automatically.

When I'm trying to use setFrame to my window and set window.frame.size.height higher than screen height then nothing happens.

So the question is: how to set window frame higher than screen height?

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

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

发布评论

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

评论(1

昔梦 2024-11-22 04:57:40

默认情况下,框架确保您无法将窗口大小调整到屏幕框架之外。要更改此行为,请子类化您的 NSWindow,并重写 constrainFrameRect:toScreen: 方法以返回未更改的帧;像这样的东西:

- (NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen *)screen
{
  //return the unaltered frame, or do some other interesting things
  return frameRect;
}

By default, the frameworks make sure you cannot resize your window to be outside the screen frame. To change this behavior, subclass your NSWindow, and override the constrainFrameRect:toScreen: method to return the unaltered frame; something like this:

- (NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen *)screen
{
  //return the unaltered frame, or do some other interesting things
  return frameRect;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文