本文介绍了如何拥有Scrollable JTextPane?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想有一个带滚动条的JTextPane,我该怎么办?谢谢。
I would like to have a JTextPane that have scroll bar, how can I do so ? Thanks.
推荐答案
要在新的JTextPane上插入滚动条,只需使用JScrollPane:
To insert a scroll bar on your new JTextPane, just use a JScrollPane:
JTextPane txt = new JTextPane();
JScrollPane jsp = new JScrollPane(txt);
JTextPane API:
JTextPane API: http://download.oracle.com/javase/6/docs/api/javax/swing/JTextPane.html
JScrollPane API:
JScrollPane API: http://download.oracle.com/javase/6/docs/api/javax/swing/JScrollPane.html
如果你有一些问题,请看看这个问题:
If you have some issues, take a look at this SO question : Java JTextPane JScrollPane Display Issue
或者看看:
这篇关于如何拥有Scrollable JTextPane?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!