mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
javafx: variables resolve (IDEA-100318)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
<?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="$<caret>" />
|
||||
</GridPane>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user