1

这是我当前的设置:

    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() 都不起作用

4

1 回答 1

2

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

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

于 2012-02-10T00:27:26.357 回答