import java.awt.Dimension;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Example {
public static void main(String args[]){
JFrame frame = new JFrame();
frame.setResizable(false);
frame.setMinimumSize(new Dimension(200,150));
frame.setLocationRelativeTo(null);
frame.setLayout(null);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton exampleBtn1 = new JButton("set");
exampleBtn1.setBounds(10, 10, 70, 10);
frame.add(exampleBtn1);
JButton exampleBtn2 = new JButton("set");
exampleBtn2.setBounds(10, 30, 50, 10);
frame.add(exampleBtn2);
}
}
此代码显示带有2个JButton的JFrame,每个JButton显示文本" set"垂直切割了一点。但我不能横向获得相同的结果,JButton exampleBtn2就是我的问题的一个例子。
如何使exampleBtn2能够以水平方向显示所有文本?我希望获得与垂直相同的结果:即使JButton的大小很小,也显示我希望看到它切割的所有文本,而不是由点补充。
答案 0 :(得分:1)
您可以尝试:
exampleBtn2.setMargin(new Insets(0, 0, 0, 0));
答案 1 :(得分:0)
您可以尝试使用较小的FontSize:
exampleBtn1.setFont(new Font("Arial", Font.PLAIN, 7));