diff options
Diffstat (limited to 'src/main/resources/fxml')
| -rw-r--r-- | src/main/resources/fxml/listEmployees.fxml | 28 | 
1 files changed, 28 insertions, 0 deletions
| diff --git a/src/main/resources/fxml/listEmployees.fxml b/src/main/resources/fxml/listEmployees.fxml new file mode 100644 index 0000000..fbd2b25 --- /dev/null +++ b/src/main/resources/fxml/listEmployees.fxml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<?import javafx.scene.control.Label?> +<?import javafx.scene.layout.AnchorPane?> +<?import javafx.scene.layout.FlowPane?> +<?import javafx.scene.text.Font?> + +<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" +  prefHeight="536.0" prefWidth="816.0" style="-fx-background-color: #EFEBE8;" +  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.ListEmployeesController"> +  <children> +    <AnchorPane prefHeight="118.0" prefWidth="816.0" style="-fx-background-color: #C55A11;"> +      <children> +        <Label layoutX="39.0" layoutY="23.0" text="Personen" textFill="WHITE"> +          <font> +            <Font name="Calibri Bold" size="22.0"/> +          </font> +        </Label> +      </children> +    </AnchorPane> +    <AnchorPane fx:id="containerHeader" layoutX="37.0" layoutY="60.0" prefHeight="86.0" +      prefWidth="740.0" +      style="-fx-background-color: white; -fx-effect: dropshadow(three-pass-box, rgba(0,0,0,0.8), 10, 0, 0, 5);"/> +    <FlowPane fx:id="flowPaneEmployeeList" layoutX="37.0" layoutY="156.0" prefHeight="360.0" +      prefWidth="742.0"/> +  </children> +</AnchorPane> | 
