我想使用fxml創建一個組合框。並且存在這樣的錯誤:不能由FXMLLoader創建javafx.collctions.FXCollections的實例。這裏是代碼:FXML加載程序無法創建FXMLCollections
<ComboBox fx:id="setBeginWidth" blendMode="DIFFERENCE" layoutX="325.0" layoutY="262.0"prefHeight="21.0" prefWidth="196.0" promptText="Set the Width of the Map">
<items>
<FXCollections fx:factory="observableArrayList">
<Integer fx:value="4" />
<Integer fx:value="5" />
<Integer fx:value="6" />
<Integer fx:value="7" />
<Integer fx:value="8" />
<Integer fx:value="9" />
<Integer fx:value="10" />
</FXCollections>
</items>
</ComboBox>
感謝您的幫助。
你在netbeans編輯器中看到錯誤信息還是由程序打印出來? –
其實該代碼適用於我。 – Sebastian