mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
11 lines
335 B
XML
11 lines
335 B
XML
<?import javafx.scene.layout.GridPane?>
|
|
<?import java.lang.String?>
|
|
<?import javafx.collections.FXCollections?>
|
|
<GridPane xmlns:fx="http://javafx.com/fxml" fx:controller="sample.Controller">
|
|
<fx:define>
|
|
<FXCollections fx:factory="observableArrayList">
|
|
<String fx:value="A"/>
|
|
</FXCollections>
|
|
</fx:define>
|
|
</GridPane>
|