哪位高手过来帮帮忙啊!!!!!!!Jtextarea 中加滚动条显示不了
public class frame extends JFrame{JTextArea text=new JTextArea("",5,10);
public frame()
{
JScrollPane sc=new JScrollPane(text);
this.setLayout(null);
JPanel panel=new JPanel();
panel.add(sc);
text1.setBounds(10, 10, 200, 200);
this.add(panel);
this.setSize(400, 400);
this.setVisible(true);
}
}
这样编译后连textarea都没有
如果把this.setLayout(null);去掉的话就可以了!
哪位高手能告诉下我怎么回事!如果我非得加上this.setLayout(null);该怎么解决?