组合框 FXML 默认值
如何在使用FXML中设置默认值?ComboBox
<ComboBox fx:id="cbo_Bacteriologie_Aesculine" prefHeight="21.0" prefWidth="105.0" GridPane.columnIndex="1" GridPane.rowIndex="0">
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:value="NVT" />
<String fx:value="Bezig" />
<String fx:value="Positief" />
<String fx:value="Negatief" />
</FXCollections>
</items>
</ComboBox>
我希望默认被选中。我尝试添加等,但似乎没有找到正确的语法。NVT
selected="selected"
是否可以使用场景生成器编辑列出的项目?我似乎找不到它。