一个半月前开始使用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); }