8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

如何在 BoxLayout 内部将 JLabels 和 JPanel 左对齐?

Pete Kirkham 2月前

43 0

我想将标签和面板(包含按钮)在垂直 BoxLayout 内左对齐。只要我不将面板添加到 BoxLayout,所有内容都会完美地左对齐,但是......

我想要将标签和面板(包含按钮)在垂直 BoxLayout 内左对齐。

只要我不将面板添加到 BoxLayout,所有内容都会完美地向左对齐,但是添加它会把所有内容搞乱。

import javax.swing.*;
import java.awt.*;

public class BoxLayoutDemo{

    public static void main(String[] args) {

        JFrame frame = new JFrame();
        JPanel panel = new JPanel();
        JPanel five = new JPanel();
        JButton plus = new JButton("+");
        JButton minus = new JButton("-");

        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));

        Font testFont = new Font("Arial", Font.BOLD, 20);
        JLabel label1 = new JLabel("Label1");
        label1.setFont(testFont);
        JLabel label2 = new JLabel("Label2");
        label2.setFont(testFont);

        five.setLayout(new BoxLayout(five, BoxLayout.X_AXIS));

        plus.setMinimumSize(new Dimension(30, 30));
        plus.setMaximumSize(new Dimension(30, 30));

        minus.setMinimumSize(new Dimension(30, 30));
        minus.setMaximumSize(new Dimension(30, 30));

        five.add(plus);
        five.add(minus);

        panel.add(label1);
        panel.add(five);
        panel.add(label2);

        panel.setOpaque(true);
        panel.setBackground(Color.red);

        frame.setMinimumSize(new Dimension(200, 200));
        frame.getContentPane().add(panel, BorderLayout.EAST);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setVisible(true);

    }
}

That's how it look That's how it look

帖子版权声明 1、本帖标题:如何在 BoxLayout 内部将 JLabels 和 JPanel 左对齐?
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Pete Kirkham在本站《user-interface》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 您可以 使用不可见的组件作为填充物 .

    private static Box leftAlignedInHorizontalBox(Component component) {
        Box box = Box.createHorizontalBox();
        box.add(component);
        box.add(Box.createHorizontalGlue());
        return box;
    }
    

    进而:

    panel.add(leftAlignedInHorizontalBox(label1));
    
返回
作者最近主题: