例如,我有两个单选按钮,我想要一个边框,以便UI看起来更清晰?尝试搜索但没有找到任何有用的东西。 谢谢!
答案 0 :(得分:4)
下面会在你的单选按钮周围创建一个边框。您可以创建不同类型的边框,请查看BorderFactory API以获取有关不同边框的说明
JRadioButton yesButton = new JRadioButton("Yes", true);
JRadioButton noButton = new JRadioButton("No", false);
ButtonGroup bgroup = new ButtonGroup();
bgroup.add(yesButton);
bgroup.add(noButton);
JPanel radioPanel = new JPanel();
radioPanel.setLayout(new GridLayout(2, 1));
radioPanel.add(yesButton);
radioPanel.add(noButton);
radioPanel.setBorder(BorderFactory.createTitledBorder(
BorderFactory.createEtchedBorder(), "BorderTitle"));
答案 1 :(得分:3)
创建一个面板,将这些单选按钮放在该面板中......并在面板周围创建一个边框