如何在 Java Swing 中自动滚动到底部
我有一个简单的 JPanel,上面有一个 JScrollPane(根据需要带有垂直滚动条)。
东西被添加到 JPanel(或从中删除),当它超出面板底部时,我希望 JScrollPane 根据需要自动向下滚动到底部,或者如果某些组件离开面板则向上滚动。
我该怎么做?我猜我需要某种监听器,每当 JPanel 高度发生变化时就会调用它?或者有像 JScrollPanel.setAutoScroll(true)
这样简单的东西吗?
I have a simple JPanel with a JScrollPane (with vertical scrollbar as needed) on it.
Things get added to (or removed from) the JPanel and when it goes beyond the bottom of the panel, I want the JScrollPane to scroll down to the bottom automatically as needed or scroll up if some components go away from the panel.
How shall I do this? I am guessing I need some kind of listener which gets called whenever the JPanel height changes? Or is there something as simple as JScrollPanel.setAutoScroll(true)
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将是最好的。从JScrollPane和JList自动滚动找到
This would be the best. Found from JScrollPane and JList auto scroll
当您添加/删除面板的组件时,您应该在面板上调用 revalidate() 以确保组件布局正确。
然后,如果您想滚动到底部,那么您应该可以使用:
When you add/remove components for a panel you should invoke revalidate() on the panel to make sure the components are laid out properly.
Then, if you want to scroll to the bottom then you should be able to use:
这就是我自动向上或向下滚动的方式:
This is how I scroll all the way up or down automatically: