如何使用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"
等,但似乎找不到正确的语法。是否可以使用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>
关于java - ComboBox FXML默认值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11684366/