java – 如何使用MiGLayout包含多个组件的行上的组件

前端之家收集整理的这篇文章主要介绍了java – 如何使用MiGLayout包含多个组件的行上的组件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一个半月前开始使用MiGLayout,一切都很简单,效果很好.我还有一个问题,我还没有解决.

假设我想要排列最右边的两个按钮和一个居中的标题,当我这样做时,标题实际上并不会居中:

(“这”是JPanel)

this.add(labelTitle,"split,span,center");
this.add(closeButton,"east");
this.add(mainMenuButton,"east");

会发生什么是“labelTitle”在放置按钮后的剩余空间中居中,但我实际上希望它相对于整个JPanel居中,而不仅仅是剩余的空间.

我可以使用什么参数来获得所需的效果?我知道我可以使用绝对定位,但是我不想这样做,因为它违反了我的案例中首先使用MiGLayout的目的.

解决方法

它可以像你正在寻找的东西吗?

干杯,
米克尔·格雷夫

public static void main(String[] args)
{
    JFrame frame = new JFrame();

    JPanel panel = new JPanel(new MigLayout("debug"));
    panel.add(new JLabel("Label Title"),"x2 min(b1.x - unrel,(container.w+pref)/2)");
    panel.add(new JButton("Close Button"),"id b1,pushx,alignx right");
    panel.add(new JButton("Main Menu Button"),"alignx right");

    frame.add(panel);
    frame.setSize(800,200);
    frame.setLocationRelativeTo(null);
    frame.setDefaultCloSEOperation(WindowConstants.EXIT_ON_CLOSE);
    frame.setVisible(true);
}
原文链接:https://www.f2er.com/java/122663.html

猜你在找的Java相关文章