如何使用JavaFX中的choiceBOX中的选定值来打开另一个窗格?

时间:2018-01-17 11:14:39

标签: javafx

在JavaFX中,我试图通过使用选择框中的选择选项来打开另一个窗格(隐藏)。

1 个答案:

答案 0 :(得分:0)

您可以简单地使用绑定:

firstPane.visibleProperty().bind(choiceBox.valueProperty().isEqualTo(/* Your Condition here */));
secondPane.visibleProperty().bind(choiceBox.valueProperty().isEqualTo(/* Your Condition here */));