JScrollBar 不显示拇指
当我将 JScrollBar 的visibleAmount 设置为等于最大值时,JScrollbar 的滑块消失。我不知道为什么? 我想让滚动条像这样:[<][ --- ][>](拇指的大小充满了JScrollbar)。
When I set visibleAmount of JScrollBar equal with maximum Value, the thumb of JScrollbar is disappear. I don't know why?
and i want to make the scrollbar like that: [<][ --- ][>] (the size of thumb is full of JScrollbar).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 JScrollBar 是 JScrollPane 的一部分,您可以选择可见性策略:
例如上面的代码使水平滚动条始终可见。
编辑:
如果您正在创建自定义 JScrollBar 来滚动组件,则应考虑使用 JScrollPane 和 将其添加到您的滚动窗格中:
If the JScrollBar is part of a JScrollPane you can choose the visibility policy:
For example the code above make the horizontal scrollbar always visible.
EDIT:
if you are creating your custom JScrollBar to scroll a component, you should consider to use a JScrollPane and add it to your scrollpane: