如何在 JTextPane 中默认将内容滚动到底部?

发布于 2024-09-01 11:17:30 字数 160 浏览 10 评论 0原文

我的窗口上有 JTextPane,并且有 JTextField。当我在 JTextField 中按 Enter 键时,文本将添加到 JTextPane 中。一切工作正常,滚动条也单独出现。但是,它显示不正确。它会自动滚动到 JTextPane 中内容的开头。如何将滚动条保持在 JTextPane 的末尾?

I have JTextPane on my window and i have JTextField. When i press enter enter in JTextField, the text gets added in JTextPane. Everything works fine and scrollbar too appears on its own. But, it doesn't appear properly. It automatically scrolls to the beginning of the content in JTextPane. How do i keep the scrollbar to the end of JTextPane?

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

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

发布评论

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

评论(3

不语却知心 2024-09-08 11:17:30

接受的答案中提供的链接是旧链接。您可能需要查看文本区域滚动以获取更多信息。该条目适用于文本区域,但我相信该信息也适用于文本窗格。

The provided link in the accepted answer is an old link. You may want to check out Text Area Scrolling for additional information. The entry is for a text area but I believe the information applies to a text pane as well.

故事未完 2024-09-08 11:17:30

您可以尝试调用

scrollPane.scrollRectToVisible(new Rectangle(0,main.getBounds(null).height,1,1));

这应该是最有效的方法。否则尝试搜索 scrollPane.setValue(..) 或使用插入符号:editorPane.setCaretPosition(...)

You can try by invoking

scrollPane.scrollRectToVisible(new Rectangle(0,main.getBounds(null).height,1,1));

This should be the most working approach. Otherwise try to search out scrollPane.setValue(..) or work with the caret: editorPane.setCaretPosition(...)

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