blob: 1173b0a6480fee45dfcb4456293e7211838f1dd8 [file] [log] [blame]
<?import javafx.collections.FXCollections?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.layout.GridPane?>
<?import java.lang.String?>
<GridPane xmlns:fx="http://javafx.com/fxml">
<ComboBox>
<items>
<FXCollections fx:factory="observableArrayList">
<String fx:value="1" />
<String fx:value="2" />
</FXCollections>
</items>
</ComboBox>
</GridPane>