mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
9 lines
314 B
XML
9 lines
314 B
XML
<?import javafx.scene.layout.GridPane?>
|
|
<?import javafx.scene.control.Label?>
|
|
<GridPane xmlns:fx="http://javafx.com/fxml">
|
|
<fx:define>
|
|
<Label fx:id="lbl" text="MyText" GridPane.rowIndex="1"/>
|
|
</fx:define>
|
|
<fx:reference source="lbl" text="bar" layoutX="10.0" layoutY="10.0" textFill="green"/>
|
|
</GridPane>
|