如何通过自动滚动将 JTextPane 的插入位置居中?
我想在 JTextPane 中自动滚动,以便带有插入符号(突出显示)的行居中。 我使用 Utilities.getRow(...caretPosition) 方法突出显示该行。 似乎是一个相当未知的问题。 谢谢!
I would like to auto scroll in my JTextPane so that the line with the caret (which is highlighted) is centered.
I am highlighting the line by using the Utilities.getRow(...caretPosition) method.
Seems to be a pretty unknown problem.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下滚动窗格中的中心线。它将插入符号垂直居中,但将插入符号水平居中也很简单。
这是修改后的代码,因此它也水平居中:
Take a look at Center Line in Scroll Pane. It centers the caret vertically, but it is trivial to also center the caret horizontally.
Here is the code modified so it also centers horizontally:
我是这样调整的:
This is how i adjusted it: