Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testcases/org.eclipse.fx.testcases.fxgraph/src/org/eclipse/fx/testcases/fxgraph/StaticProperties.fxml')
-rwxr-xr-xtestcases/org.eclipse.fx.testcases.fxgraph/src/org/eclipse/fx/testcases/fxgraph/StaticProperties.fxml19
1 files changed, 19 insertions, 0 deletions
diff --git a/testcases/org.eclipse.fx.testcases.fxgraph/src/org/eclipse/fx/testcases/fxgraph/StaticProperties.fxml b/testcases/org.eclipse.fx.testcases.fxgraph/src/org/eclipse/fx/testcases/fxgraph/StaticProperties.fxml
new file mode 100755
index 000000000..86f3051aa
--- /dev/null
+++ b/testcases/org.eclipse.fx.testcases.fxgraph/src/org/eclipse/fx/testcases/fxgraph/StaticProperties.fxml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Do not edit this file it is generated by e(fx)clipse from ../src/org/eclipse/fx/testcases/fxgraph/StaticProperties.fxgraph
+-->
+
+<?import java.lang.*?>
+<?import javafx.scene.control.Label?>
+<?import javafx.scene.control.TextField?>
+<?import javafx.scene.layout.GridPane?>
+
+<GridPane xmlns:fx="http://javafx.com/fxml">
+
+ <children>
+ <Label text="Firstname:" GridPane.columnIndex="0" GridPane.rowIndex="0"/>
+ <TextField GridPane.columnIndex="1" GridPane.rowIndex="0"/>
+ <Label text="Lastname:" GridPane.columnIndex="0" GridPane.rowIndex="1"/>
+ <TextField GridPane.columnIndex="1" GridPane.rowIndex="1"/>
+ </children>
+</GridPane>

Back to the top