我还是 javafx 的新手,我想对单选按钮执行定向绑定
在我的 fxml 我有
<fx:define>
<ToggleGroup fx:id="version_selection" />
</fx:define>
<RadioButton toggleGroup="$version_selection" ............>
<RadioButton toggleGroup="$version_selection" ............>
在我的控制器中,我想绑定所选切换组的值。使用文本字段很简单
@FXML
TextField name;
@FXML
private ToggleGroup version_selection;
name.textProperty().bindBidirectional(model.field5Property());
其中模型是我的具有 SimpleStringValue 属性的类
我如何绑定切换组,因为它没有文本属性作为文本字段
HUH函数
相关分类