如何将组件添加到具有绝对定位的JComponent中



这是我当前的设置:

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

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

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

相关内容

  • 没有找到相关文章

最新更新