diff options
Diffstat (limited to 'src/main/resources/fxml/createNewEmployee.fxml')
-rw-r--r-- | src/main/resources/fxml/createNewEmployee.fxml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/main/resources/fxml/createNewEmployee.fxml b/src/main/resources/fxml/createNewEmployee.fxml index 3043952..47e8b63 100644 --- a/src/main/resources/fxml/createNewEmployee.fxml +++ b/src/main/resources/fxml/createNewEmployee.fxml @@ -7,13 +7,9 @@ <?import javafx.scene.control.Label?> <?import javafx.scene.control.TextField?> <?import javafx.scene.layout.AnchorPane?> - -<AnchorPane xmlns="http://javafx.com/javafx/9.0.1" - xmlns:fx="http://javafx.com/fxml/1" - styleClass="bg-white" - fx:id="apCreateNewEmployee" - prefWidth="${apCreateNewEmployee.parent.width}" - prefHeight="120" +<AnchorPane fx:id="apCreateNewEmployee" prefHeight="120" + prefWidth="${apCreateNewEmployee.parent.width}" styleClass="bg-white" + xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.controller.CreateNewEmployeeController"> <children> <Label fx:id="lblHeader" layoutX="14.0" layoutY="14.0" text="Neue Person erstellen"/> |