如何使 NSScroller 的旋钮轨道透明?
这是我的应用程序屏幕截图。窗口上只有一个 NSScrollView。我已经制作了其他部分滚动视图透明,除了旋钮槽。
这是我的自定义 NSScroller 子类的绘制代码。
- (void) drawRect: (NSRect)dirtyRect
{
[[NSColor clearColor] set];
NSRectFill(dirtyRect);
[self drawKnob];
}
有谁知道如何进行这项工作吗?多谢。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我自己解决了这个问题。这是代码。
虽然不是很透明,但是效果就是我想要的。
OK,I solve this myself.Here is the code.
Though it is not really transparent, but the effect is what I want.