答案 0 :(得分:1)
不要直接使用JSeparator
,而是使用内置支持的JToolBar
来自JavaDocs
JSeparator提供了一个用于实现的通用组件 分隔线 - 最常用作菜单项之间的分隔线 将它们分解为逻辑分组。而不是使用 直接使用JSeparator,可以使用JMenu或JPopupMenu addSeparator 创建和添加分隔符的方法。
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JToolBar;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
public class Test {
public static void main(String[] args) {
new Test();
}
public Test() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
}
JToolBar toolbar = new JToolBar();
toolbar.add(new JRadioButton("One"));
toolbar.add(new JRadioButton("Two"));
toolbar.addSeparator();
//toolbar.add(new JSeparator(JSeparator.VERTICAL));
toolbar.add(new JRadioButton("Three"));
toolbar.add(new JRadioButton("Four"));
toolbar.add(new JRadioButton("Five"));
JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(toolbar, BorderLayout.NORTH);
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
public class TestPane extends JPanel {
public TestPane() {
add(new JLabel("Just here to fill space"));
}
@Override
public Dimension getPreferredSize() {
return new Dimension(200, 200);
}
}
}
但为什么(它会这样做)?
我没有深入研究这个问题(甚至是浅薄的),但我猜测布局管理器正在使用分隔符的最大大小属性来确定如何最好地布局组件,它为它提供剩余的空间...这可能是JToolBar
支持它自己的分隔符的原因