更改 NSPanel 中的标题栏高度

发布于 2024-12-05 16:41:10 字数 308 浏览 1 评论 0原文

我正在尝试更改 NSPanel 的标题栏高度。我尝试了以下操作,但没有按预期工作:

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
  NSRect f = [[[window contentView] superview] frame];
  f.size.height += 10;
  [[window contentView] superview].frame = f;
}

I'm trying to change the titlebar height of an NSPanel. I tried the following but it didn't work as expected:

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
  NSRect f = [[[window contentView] superview] frame];
  f.size.height += 10;
  [[window contentView] superview].frame = f;
}

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

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

发布评论

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

评论(1

春风十里 2024-12-12 16:41:10

您无法更改窗口标题栏的高度。它是由框架固定的。如果您想要一个具有自定义外观的窗口,您需要使用 NSBorderlessWindowMask 样式掩码创建一个窗口,然后绘制您自己的标题栏和小部件。

You can't change the height of a window's title bar. It's fixed by the framework. If you want a window with a custom appearance you'll need to create a window using the NSBorderlessWindowMask style mask and then draw your own title bar and widgets.

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