如何使 NSScroller 的旋钮轨道透明?

发布于 2024-10-16 04:43:20 字数 342 浏览 2 评论 0原文

在此处输入图像描述

这是我的应用程序屏幕截图。窗口上只有一个 NSScrollView。我已经制作了其他部分滚动视图透明,除了旋钮槽。

这是我的自定义 NSScroller 子类的绘制代码。

- (void) drawRect: (NSRect)dirtyRect
{
    [[NSColor clearColor] set];
    NSRectFill(dirtyRect);

    [self drawKnob];
}

有谁知道如何进行这项工作吗?多谢。

enter image description here

This is my application screenshot.There is only one NSScrollView on the window.I have made the other parts of the scrollview transparent,except the knob slot.

Here is my draw code for custom NSScroller subclass.

- (void) drawRect: (NSRect)dirtyRect
{
    [[NSColor clearColor] set];
    NSRectFill(dirtyRect);

    [self drawKnob];
}

Does anyone have a clue to make this work? Thanks a lot.

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

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

发布评论

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

评论(1

铁憨憨 2024-10-23 04:43:20

好的,我自己解决了这个问题。这是代码。

- (void) drawRect: (NSRect)dirtyRect
{
    NSDrawWindowBackground([self bounds]);
    [self drawKnob];
}

虽然不是很透明,但是效果就是我想要的。

OK,I solve this myself.Here is the code.

- (void) drawRect: (NSRect)dirtyRect
{
    NSDrawWindowBackground([self bounds]);
    [self drawKnob];
}

Though it is not really transparent, but the effect is what I want.

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