将 JButton 文本设置为左对齐?
2022-09-02 05:36:15
我以前有一个JLabel,我想可以点击。我发现最简单的方法是使其成为JButton并使用以下代码。它现在看起来像一个JLabel
button.setBorder(BorderFactory.createEmptyBorder(2, 2, 2, 2));
button.setBorderPainted(false);
button.setContentAreaFilled(false);
button.setFocusPainted(false);
这正是我想要的,除了文本现在在中间对齐。现在,从我能够阅读其他问题和搜索的内容。这应该有效
button.setHorizontalTextPosition( SwingConstants.LEFT );
但是,文本仍然在按钮的中间对齐。我能做些什么来改变这一点?