mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-23 23:11:37 +07:00
14 lines
443 B
XML
14 lines
443 B
XML
<?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> |