如何以编程方式控制 JScrollPane 的位置?

发布于 2024-11-28 22:15:06 字数 186 浏览 0 评论 0原文

我有一个 JScrollPane ,其中包含一个 JPanel 和一个 JList。我希望视口始终显示列表的结尾(从中删除或添加项目)。我可以通过将 ScrollBar 拖到底部(它所在的位置)来手动完成此操作,就像我想要的那样。我应该怎么做才能自动完成此任务?

I have a JScrollPane containing a JPanel and, in turn, a JList. I want for the viewport to always show the end of the list (from which items are being removed or added). I can accomplish this manually by dragging the ScrollBar to the bottom, where it stays, just the way I want it to. What should I do to accomplish this automatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

方圜几里 2024-12-05 22:15:06

做起来应该很简单。只需使用 JList 的 ensureIndexIsVisible 方法并向其传递列表中的最后一个索引(大小 - 1)。

It should be simple to do. Just use JList's ensureIndexIsVisible method and pass it the last index in the list (size - 1).

酒几许 2024-12-05 22:15:06

创建 JScrollPane 后,您可以使用“scrollto”调用。

这是文档的链接。
http://jscrollpane.kelvinluck.com/scroll_to.html

You can use "scrollto" call while after creating JScrollPane.

here is the link for documentation.
http://jscrollpane.kelvinluck.com/scroll_to.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文