mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
10 lines
329 B
XML
10 lines
329 B
XML
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.TextField?>
|
|
<?import javafx.scene.control.Button?>
|
|
|
|
<?import javafx.scene.layout.GridPane?>
|
|
<GridPane xmlns:fx="http://javafx.com/fxml">
|
|
<Label text="Hello" fx:id="lab1"/>
|
|
<TextField fx:id="tf" disable="true"/>
|
|
<Button text="Click Me" />
|
|
</GridPane> |