0

我有一个要添加到 JscrollPane 的文本窗格。但我看不到文本窗格。这里有什么问题?

        crimepanel.setBounds(new Rectangle(660, 250, 295, 35));
        scroll.setBounds(new Rectangle(655, 240, 305, 55));
        scroll.add(crimepanel);
        this.getContentPane().add(scroll, null);
        this.getContentPane().add(crimepanel, null);
4

1 回答 1

1

我知道了!正确的代码是:

        scroll.getViewport().add(crimepanel, null);
        this.getContentPane().add(scroll, null);
于 2013-10-29T09:40:19.640 回答