如何在 Mac OS X Lion 中创建细滚动条
我将如何创建一个像 OSX Lion 上的 Stickies 应用程序那样的细滚动条?
How would I go about create a thin scroll bar like in the Stickies app on OSX Lion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果将
NSScroller
设置为“小”控件大小,无论是在 IB 中还是使用-setControlSize:
,这不是正确的细度吗?If you set the
NSScroller
to the "small" control size, either in IB or using-setControlSize:
, is that not the right thinness?Lion 版本的 AppKit 发行说明 概述了何时使用和不使用覆盖滚动条:
您应检查您的计算机和应用程序是否满足所有条件。
您还可以使用 NSScroller setScrollerStyle:,但最好尊重默认值和用户首选项。
The release notes for Lion's version of AppKit outline when overlay scrollbars are and are not used:
You should check if all the conditions are met on your machine and in your app.
You could also set the scroller style explicitly using NSScroller setScrollerStyle:, but it's probably better to respect the defaults and user preferences.