java 费解 JFrame 添加一个 不使用布局管理器的jpanel 怎么不显示呢
JFramef=newJFrame();JPanelp1=newJPanel();JPanelp2=newJPanel();JPanelp3=newJPanel();p1...
JFrame f = new JFrame();
JPanel p1 = new JPanel();
JPanel p2 = new JPanel();
JPanel p3 = new JPanel();
p1.setBackground(Color.blue);
p2.setBackground(Color.red);
p3.setBackground(Color.black);
p1.setLayout(null);
p1.setLayout(null);
p3.setLayout(null);
Container c = this.getContentPane();
c.add(p1,BorderLayout.SOUTH);
c.add(p2,BorderLayout.CENTER);
c.add(p3,BorderLayout.NORTH);
最后只会显示红色。。p1 p2 都没显示。。但是使用布局管理器的情况下会显示。。这是为什么呢 展开
JPanel p1 = new JPanel();
JPanel p2 = new JPanel();
JPanel p3 = new JPanel();
p1.setBackground(Color.blue);
p2.setBackground(Color.red);
p3.setBackground(Color.black);
p1.setLayout(null);
p1.setLayout(null);
p3.setLayout(null);
Container c = this.getContentPane();
c.add(p1,BorderLayout.SOUTH);
c.add(p2,BorderLayout.CENTER);
c.add(p3,BorderLayout.NORTH);
最后只会显示红色。。p1 p2 都没显示。。但是使用布局管理器的情况下会显示。。这是为什么呢 展开
1个回答
2013-03-19
展开全部
this.getContentPane()是哪个对象,前面是变量的JFrame f;
f的布局呢
f的布局呢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询