ComboBox FXML默认值

如何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编辑列出的项目?我似乎找不到。

回答:

用这个:

<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>

以上是 ComboBox FXML默认值 的全部内容, 来源链接: utcz.com/qa/410121.html

回到顶部