在JavaFX中,我试图通过使用选择框中的选择选项来打开另一个窗格(隐藏)。
答案 0 :(得分:0)
您可以简单地使用绑定:
firstPane.visibleProperty().bind(choiceBox.valueProperty().isEqualTo(/* Your Condition here */));
secondPane.visibleProperty().bind(choiceBox.valueProperty().isEqualTo(/* Your Condition here */));