When I create a JavaFX 2.0 ChoiceBox instance like this:
final ChoiceBox<String> fontChBox =
new ChoiceBox<>(FXCollections.observableArrayList("First", "Second", "Third"));
a choice box is displayed with no selection. I would like to select the first element by default. How to do it in JavaFX 2.0?