我正在尝试实现两个单选按钮并使它们互斥。
public ProvincesPanel() {
//radiobuttons definitions.csv
this.setName("Provinces 2");
ButtonGroup vanillaOrMod = new ButtonGroup();
vanillaOrMod.add(rdbDefNew);
vanillaOrMod.add(rdbDefVan);
rdbDefNew= new JRadioButton("new definition.csv file");
rdbDefVan= new JRadioButton("vanilla definition.csv file");
add(rdbDefNew);
add(rdbDefVan);
}
现在由于某种我不明白的原因,按钮仍然不是专有的?
感谢您的时间