无法在JScrollPane中看到组件

时间:2013-09-19 23:56:28

标签: java swing textarea jscrollpane

我正在使用JScrollPane来保存大面积文本的JTextArea。我将TextArea直接添加到JFrame,它工作正常。但我将它添加到滚动窗格并添加滚动窗格,我没有看到textarea。这是我的SSCCE:

public class foo extends JFrame{
    //gui elements
JTextArea chatMonitor = new JTextArea();

JScrollPane textPane = new JScrollPane();

ChatFrame(final String nickname, final String login, final String server, final String channel){
    setSize(500,500);
    chatMonitor.setEditable(false);
    chatMonitor.setVisible(true);
    textPane.add(chatMonitor);
    textPane.setAutoscrolls(true);
    textPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
    textPane.setVisible(true);
    add(textPane);
}
}

1 个答案:

答案 0 :(得分:5)

假设textPaneJScrollPane,您绝不应该向其添加组件。

而是使用JScrollPane#setViewportView(Component)

JScrollPane由多个组件组成,这些组件协同工作,为您提供使组件可滚动所需的功能......

enter image description here

JScrollPane有一个JViewport,用于包含您要滚动的组件。您需要将组件“应用”到视图中。

仔细查看How to use Scroll Panes了解更多详情