Java 面板向下滚动
我在此面板的末尾有一个“向下”按钮:
当我单击它时,我想面板可见部分的偏移量像卷轴一样上升。 1/2 秒后按下向下按钮我只能看到第二个、第三个和第四个元素,第一个元素被隐藏。
我怎样才能做到这一点?
非常感谢,
问候。
I have one button "down" at the end of this panel :
When I click on it I would like that the offset of the visible part of the panel rise up, like a scroll. after 1/2 second the down button is pressed I can only see the 2nd, 3rd and 4th element, the first is hidden.
How can I do that ?
Thank you very much,
Regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将面板放置在没有可见滚动条的 JScrollPane 中。将面板的首选尺寸设置为更大(可见高度+按钮高度之和)。单击向下时,只需根据下一个按钮的高度向上滚动即可。
Place the panel in a JScrollPane without visible scroll bars. Set preferred size of the panel to be bigger (visible height + sum of the buttons' heights). On click down just scroll up according to the next button's height.