如何更改 NSScroller 长度
是否有任何 api 可以更改 scroller
长度,我想在不子类化 NSScroller
的情况下执行相同的操作。
Is there any api to change the scroller
length, I would like to do the same without subclassing NSScroller
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NSScroller(作为 NSView 的子类)有一个 setFrame: 方法,它接受一个 NSRect。传入适当的宽度或高度来设置控件的长度。
NSScroller (as a subclass of NSView) has a setFrame: method that takes an NSRect. Pass in the appropriate width or height to set the length of your control.