如何ComboBox使用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"诸如此类,但似乎找不到正确的语法。
NVT
selected="selected"
是否可以使用Scene Builder编辑列出的项目?我似乎找不到。
用这个:
<ComboBox> <items> <FXCollections fx:factory="observableArrayList"> <String fx:value="NVT" /> <String fx:value="Bezig" /> <String fx:value="Positief" /> <String fx:value="Negatief" /> </FXCollections> </items> <value> <String fx:value="NVT" /> </value> </ComboBox>