当前位置: 代码迷 >> J2SE >> 如何在JTextPane加上JScollPan
  详细解决方案

如何在JTextPane加上JScollPan

热度:630   发布时间:2016-04-24 18:13:46.0
怎么在JTextPane加上JScollPan
貌似有点难度啊,有人知道吗?

------解决方案--------------------
探讨
Java code
JTextPane textPane = new JTextPane();
JScrollPane textScrollPane = new JScrollPane();
textScrollPane.getViewport().add(textPane);



这样就可以了,将JTextPane添加到JViewport(视口)中