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

发布于 2025-01-04 13:23:34 字数 627 浏览 0 评论 0原文

这是我当前的设置:

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

Here is my current settings:

    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's all component are displayed as expected while upperContent didn't display the component that i was added to it by using the following code:

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

i also used label.repaint(); & upperContent.revalidate() neither worked

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

作死小能手 2025-01-11 13:23:34

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

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

You get absolute positioning with a null layout. The bad news is that everything is totally up to you from then on.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文