Mac 自定义 NSSlider 如何覆盖滑块框架外部的刻度线绘制

发布于 2024-11-26 06:16:30 字数 235 浏览 4 评论 0原文

我正在创建一个自定义 NSSlider,我想在每个刻度线下方绘制标签。 我目前正在自定义 NSSliderCell -(NSRect)rectOfTickMarkAtIndex 中执行此操作,但是因为 NSSlider 的高度是固定的,所以我的标签下面的图画正在被裁剪。

有人有什么想法吗? 此外,任何具有自定义 NSSlider 的完整实现的资源都将受到赞赏。

I'm creating a custom NSSlider where I want to draw labels underneath each of the tick marks.
I'm currently doing this in the custom NSSliderCell -(NSRect)rectOfTickMarkAtIndex however because the height of NSSlider is fixed, the label I'm drawing underneath is being cropped.

Anyone have any ideas?
Also any resources with full implementations of custom NSSliders would be appreciated.

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

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

发布评论

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

评论(1

涙—继续流 2024-12-03 06:16:30

只需设置 NSSlider(它实际上是 NSView 的子类)的框架和边界,使其更高。那么你的绘图应该可以正常工作。将此代码粘贴到 awakeFromNib 中:(如果您位于其子类中,请将 slider 替换为 self。)

NSRect frameRect = [slider frame];
frameRect.size.height = 30;
[slider setFrame:frameRect];
NSRect boundsRect = [slider bounds];
boundsRect.size.height = 30;
[slider setBounds:boundsRect];

Simply set the frame and bounds of the NSSlider (which is really a subclass of NSView) so it is higher. Then your drawing should work fine. Stick this code in awakeFromNib: (Replace slider with self if you're in its subclass.)

NSRect frameRect = [slider frame];
frameRect.size.height = 30;
[slider setFrame:frameRect];
NSRect boundsRect = [slider bounds];
boundsRect.size.height = 30;
[slider setBounds:boundsRect];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文