删除 Miglayout 中父容器边框的间隙

发布于 2024-11-07 09:38:41 字数 513 浏览 0 评论 0原文

首先是一张可视化问题的图片 Gap Removal Problem

如您所见,面板左右两侧的父容器之间存在巨大间隙带有箭头,它不应该在那里。我不知道如何消除间隙。我为此苦苦挣扎了几个小时,我尝试了文档中的几乎所有内容,并阅读了 SO 和 MiG 支持论坛上的所有相关主题。这是相关的代码:

public class ArrowPanel extends JPanel
{

 public ArrowPanel()
 {
     setLayout( new MigLayout( "fill,debug" ) );

     add( new JLabel( Icons.roundArrowRight() ), "grow,wrap" );
     add( new JLabel( Icons.roundArrowLeft() ), "grow" );
 }
}

我认为这应该很容易,但不知何故我不明白......

first a picture for visualizing the problem
Gap Removal Problem

As you can see, there is a huge gap to the parents container on the right and left side of the panel with the arrows, which should not be there. I do not have a clue how to remove the gap. I'm struggling with this for hours, I tried almost everything in the documentation and read all relevant topics on SO and MiG Support Forum. Here is the relevant code:

public class ArrowPanel extends JPanel
{

 public ArrowPanel()
 {
     setLayout( new MigLayout( "fill,debug" ) );

     add( new JLabel( Icons.roundArrowRight() ), "grow,wrap" );
     add( new JLabel( Icons.roundArrowLeft() ), "grow" );
 }
}

I think this should be easy, but somehow I do not get it...

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

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

发布评论

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

评论(1

儭儭莪哋寶赑 2024-11-14 09:38:41

自从我接触 MigLayout 以来已经有一段时间了,但请尝试:

"fill, debug, insets 0"

It's been a little while since I touched MigLayout but try:

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