我是JavaFX的新手。我有两个javafx.scene.control.RadioButton
我希望它们以这种方式绑定,当一个被选中时,另一个没有被选中,反之亦然。
如果我这样绑定
radioButton1.selectedProperty().bindBidirectional(radioButton2.selectedProperty())
两者都是选中的。
感谢您的帮助!
答案 0 :(得分:4)
将RadioButton
添加到同一个切换组:
ToggleGroup toggleGroup = new ToggleGroup();
radioButton1.setToggleGroup(toggleGroup);
radioButton2.setToggleGroup(toggleGroup);