如何在 boxLayout 中的两个按钮之间添加空格?
2022-08-31 20:54:01
我在一个组中有四个按钮。这只是两个示例,因为它都是重复的代码。我想在每个按钮之间创建一个轻微的空间,这样它们就不会相互碰撞。我几乎尝试了其中的所有方法,但没有任何效果。BoxLayout
.add(Box.Create....)
enter.add(Box.createVerticalGlue());
enter.add(Box.createHorizontalGlue());
//enter.add(new JSeparator(SwingConstants.HORIZONTAL));
JButton float = new JButton("LOWER");
float.add(Box.createVerticalGlue());
float.add(Box.createHorizontalGlue());