mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
10 lines
281 B
XML
10 lines
281 B
XML
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
<?import model.Data?>
|
|
<VBox fx:controller="ModelFieldProperty"
|
|
xmlns:fx="http://javafx.com/fxml">
|
|
<fx:define>
|
|
<Data fx:id="data" />
|
|
</fx:define>
|
|
<Label text="${data.newName<caret>}"/>
|
|
</VBox> |