gpt4 book ai didi

java - 如何将 JLabel 对齐到 JPanel 的左侧?

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:31:08 24 4
gpt4 key购买 nike

我想将我的 JLabel 左对齐。

    String lText = "<html><b><font color = white face = comic sans ms size = 20>mybook</font></b></html>";
JLabel label = new JLabel(lText);
label.setBorder(new EmptyBorder(25,0,25,500));

我尝试使用 EmptyBorder 来做到这一点,但它没有正确对齐。我正在使用 FlowLayout

最佳答案

FlowLayout 默认使用 CENTER 对齐方式。尝试为您的 JLabel JPanel 容器使用 LEFT 对齐方式

myJPanel.setLayout(new FlowLayout(FlowLayout.LEFT));

关于java - 如何将 JLabel 对齐到 JPanel 的左侧?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17511518/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com