自定义 NSWindow 绘图

发布于 2024-10-26 17:38:06 字数 131 浏览 2 评论 0原文

我想绘制一个自定义 NSWindow,它允许我甚至在顶栏顶部(交通灯按钮和标题栏所在的位置)添加子视图。

当我使用透明窗口并使用自定义视图来模仿 NSWindow 时,我需要自己实现很多事情,因此我认为应该有更好的方法来实现这一点。

I want to draw a custom NSWindow that allows me to add subviews even on top of the top bar ( where the traffic light buttons are and the title bar ).

When I use a transparent window and use a custom view to mimic a NSWindow I need to implement so many things by myself that I thought there should be a better way of achieving this.

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

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

发布评论

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

评论(3

写给空气的情书 2024-11-02 17:38:07

Apple 有两个自定义窗口示例项目: RoundTransparentWindowFunkyOverlayWindow(不过这个!)。 Cocoa With Love 有一篇教程文章,请务必阅读底部链接的有关窗框中自定义绘图的文章。

Apple has two custom window sample projects: RoundTransparentWindow and FunkyOverlayWindow (this one is old, though!). Cocoa With Love has an tutorial article, and be sure to read the article linked at the bottom, about custom drawing in window frames.

独自←快乐 2024-11-02 17:38:07
[[[super contentView] superview] addSubview:subview];

要解决这个问题,只需给它正确的框架来定位它即可。

[[[super contentView] superview] addSubview:subview];

Does the trick, simply give it the rgiht frame to position it.

诗化ㄋ丶相逢 2024-11-02 17:38:07

@antwan 查看 github 上关于 INAppStoreWindow 的讨论 https://github.com/indragiek/INAppStoreWindow/issues /169

@antwan Check out the discussion on github for INAppStoreWindow https://github.com/indragiek/INAppStoreWindow/issues/169

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