我在这个项目中正在开发一个基本的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);
在这里,黑屏是textarea,但我想看到这个文本区域,因为所有的粉红色屏幕位置都是(180,100,1350,650)