如何在JPanel中左对齐JLabel?

时间:2016-08-26 10:01:17

标签: java swing jpanel jlabel layout-manager

我正在尝试为登录对话框构建状态栏,但标签没有对齐到状态面板的左侧。这是我的代码。

public class LoginDialog extends JDialog {

    private static final long serialVersionUID = 1L;

    protected JLabel lblTopSpace = null;
    protected JPanel loginPanel = null;
    protected JPanel statusPanel = null;

    public LoginDialog(String title) {

        super((Dialog)null);

        this.setTitle(title);

        Initialize();
    }

    protected void Initialize() {

        lblTopSpace = new JLabel("Login into Bookyard");
        lblTopSpace.setForeground(this.getBackground());

        loginPanel = new LoginPanel();
        statusPanel = new JPanel();

        statusPanel.setBorder(new BevelBorder(BevelBorder.LOWERED));
        statusPanel.setSize(this.getWidth(), 50);

        JLabel lblStatus = new JLabel("Status");
        lblStatus.setFont(new Font("Verdana", Font.PLAIN, 12));
        lblStatus.setHorizontalAlignment(SwingConstants.LEFT);
        statusPanel.add(lblStatus);

        this.setLayout(new BorderLayout());
        Container container = this.getContentPane();

        container.add(lblTopSpace, BorderLayout.NORTH);
        container.add(loginPanel, BorderLayout.CENTER);
        container.add(statusPanel, BorderLayout.SOUTH);

        this.pack();
    }
}

这是目前的样子。

enter image description here

我错过了什么?

1 个答案:

答案 0 :(得分:2)

您的标签位于对话框内容窗格内的面板内。因此标签使用其父面板的布局进行管理。但是你没有为它设置任何特定的布局,那么它是FlowLayout,然后你的标签在其中居中,其大小是让文本出现所需的最小尺寸。然后标签在其自己的区域中保持对齐,但这个标签在面板中居中。

更改面板的布局以让标签在其中延伸(添加BorderLayout并在其北面,中间或南面设置标签),或者删除看似无用的面板(并让标签在内容窗格的南部延伸。

statusPanel.setLayout(new BorderLayout());
statusPanel.add(lblStatus,BorderLayout.SOUTH);

container.add(lblStatus,BorderLayout.SOUTH);