如何在ComboBox
使用 FXML 中设置默认值?
<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"
等,但似乎找不到正确的语法。
是否可以使用 Scene Builder 编辑列出的项目?我似乎找不到它。