1

例如,我有两个单选按钮,我希望它们周围有一个边框,以便 UI 看起来更清晰?尝试搜索但没有找到任何有用的东西。谢谢!

4

2 回答 2

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"));
于 2013-05-08T12:46:48.790 回答
3

创建一个面板,将这些单选按钮放在该面板中......并在面板周围创建一个边框

如何使用边框

于 2013-05-08T12:47:05.167 回答