TextArea.setBounds属性不在固定位置

时间:2015-10-05 06:23:29

标签: java swing

我在这个项目中正在开发一个基本的IDE项目。 我想在固定位置添加TextArea,但setBounds属性不起作用。

TextArea a=new TextArea(30,120);

a.setBackground(Color.black);
a.setForeground(Color.white);
p3=new JPanel();
p3.setBackground(Color.pink);
p3.setBounds(180,100,1350,650);
p3.setVisible(true);
f.add(p3);
p3.add(a);

enter image description here

在这里,黑屏是textarea,但我想看到这个文本区域,因为所有的粉红色屏幕位置都是(180,100,1350,650)

0 个答案:

没有答案