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を使用してリストされたアイテムを編集することは可能ですか? 私はそれを見つけることができないようです。