我在JavaFx应用程序中使用此方法来创建RadioButton
。
private HBox createModesRadios(IntegerProperty count, Mode... modes) {
ToggleGroup group = new ToggleGroup();
HBox result = new HBox(50);
result.setPadding(new Insets(20, 0, 0, 0));
result.setAlignment(Pos.CENTER);
for (Mode mode : modes) {
RadioButton radio = new RadioButton(mode.getText());
radio.setToggleGroup(group);
radio.setUserData(mode);
result.getChildren().add(radio);
}
if (modes.length > 0) {
group.selectToggle((Toggle) result.getChildren().get(0));
count.bind(Bindings.createIntegerBinding(() -> ((Mode) group.getSelectedToggle().getUserData()).getCount(), group.selectedToggleProperty()));
} else {
count.set(0);
}
return result;
}
在我的Controller类中的initialize()
方法中以以下方式HBox radioBox = createModesRadios(elementCount, modes);
调用了它。
这是助手类模式:
public class Mode {
private final String text;
private final int count;
public Mode(String text, int count) {
this.text = text;
this.count = count;
}
public String getText() {
return text;
}
public int getCount() {
return count;
}
}
如何保存用户选择的按钮?最好将所选按钮的String
方法存储在变量mode.getText()
中。另外,我想重新设置先前选择的按钮,以便应用程序可以记住选择。
答案 0 :(得分:1)
您可以在控制器类内的变量声明中添加类似的内容:private List<RadioButton> radioButtonsList = new ArrayList<>();
然后您可以在您提到的方法的for
循环内添加类似的内容
...
radioButtonsList.add(radio);
...
之后,您可以使用radioButtonList.get()