mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
10 lines
350 B
XML
10 lines
350 B
XML
<?import javafx.scene.layout.GridPane?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Tooltip?>
|
|
<GridPane fx:controller="sample.Controller" xmlns:fx="http://javafx.com/fxml">
|
|
<fx:define>
|
|
<Tooltip text="tooltip" fx:id="t"/>
|
|
</fx:define>
|
|
|
|
<Button onAction="#sayHello" text="Hello" fx:id="b1" tooltip="$t" />
|
|
</GridPane> |