java fx choicebox_FXML如何设置choicebox的默认值
时间: 2023-10-20 11:05:50 浏览: 92
给Select One Choice设置默认值
在FXML中,可以使用`fx:defaultValue`属性来设置ChoiceBox的默认值。例如:
```xml
<ChoiceBox fx:id="myChoiceBox" fx:defaultValue="Option 2">
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:value="Option 1" />
<String fx:value="Option 2" />
<String fx:value="Option 3" />
</FXCollections>
</items>
</ChoiceBox>
```
在上面的例子中,ChoiceBox的默认值被设置为“Option 2”。注意,`fx:defaultValue`属性的值必须是ChoiceBox中的一个选项的值。
阅读全文