NSWindow 设置框架高于屏幕
我需要帮助。我有一个像 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,框架确保您无法将窗口大小调整到屏幕框架之外。要更改此行为,请子类化您的
NSWindow
,并重写constrainFrameRect:toScreen:
方法以返回未更改的帧;像这样的东西: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 theconstrainFrameRect:toScreen:
method to return the unaltered frame; something like this: