我有以下 FXML:
<ChoiceBox>
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:value="2 minutes" />
<String fx:value="5 minutes" />
<String fx:value="15 minutes" />
</FXCollections>
</items>
</ChoiceBox>
但在 GUI 中,它只显示一个默认为空的 ChoiceBox。我希望列表中的第一个元素成为默认值,并选择“null”或禁止任何内容。
我该如何做到这一点?