Files
openide/plugins/javaFX/testData/highlighting/booleanPropertyWithoutField.fxml

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>