如何使用绝对定位将组件添加到JComponent中?

时间:2012-02-10 00:25:08

标签: java swing user-interface awt absolutelayout

这是我目前的设置:

    private JComponent upperContent = new GeneralContent();
    private JComponent lowerContent = new GeneralContent();
    // GeneralContent extends JComponent

   jframe.setLayout(new GridLayout(2, 0));
   upperContent.setLayout(null);
   lowerContent.setLayout(new GridBagLayout());
   jframe.add(upperContent);
   jframe.add(lowerContent)

lowerContent的所有组件都按预期显示,而upperContent没有显示我使用以下代码添加到其中的组件:

JLabel label=new JLabel();
upperContent.add(label);
label.setLocation(15,15);

我也使用了label.repaint(); &安培; upperContent.revalidate()都没有工作

1 个答案:

答案 0 :(得分:2)

使用null布局获得绝对定位。坏消息是,从那时起,一切都完全取决于你。

http://docs.oracle.com/javase/tutorial/uiswing/layout/none.html