diff options
| author | Dominic Rogetzer <e1627756@student.tuwien.ac.at> | 2018-05-18 17:35:51 +0200 | 
|---|---|---|
| committer | Tharre <tharre3@gmail.com> | 2018-05-22 17:05:32 +0200 | 
| commit | d586c29aaa2e7fb712582abdaa31c62cd7812d22 (patch) | |
| tree | 841a9e2c229a097366771bcb673d4166cfa15acd /src/main/resources/fxml | |
| parent | 0f920f7f8ab59559838a33ac1b828a606d481b1d (diff) | |
| download | sepm-groupproject-d586c29aaa2e7fb712582abdaa31c62cd7812d22.tar.gz sepm-groupproject-d586c29aaa2e7fb712582abdaa31c62cd7812d22.tar.xz sepm-groupproject-d586c29aaa2e7fb712582abdaa31c62cd7812d22.zip | |
Add fxml listEmployees (main view of employees) [#25949]
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> | 
