通过场景生成器组合框项目?
<ComboBox fx:id="schaltung" layoutX="347.0" layoutY="50.0" prefHeight="63.0" prefWidth="213.0">
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:id="reihe" fx:value="Reihenschaltung" />
<String fx:id="parallel" fx:value="Parallelschaltung" />
</FXCollections>
</items>
</ComboBox>
我将其添加到我的FXML文件中,因为我无法确定在SceneBuilder中将项目添加到ComboBox的位置。是否可以通过 SceneBuilder 添加项目,还是必须手动添加项目?