diff options
author | Viktoria Pundy <viktoria.pundy@aon.at> | 2018-05-15 20:45:52 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-05-22 15:30:25 +0200 |
commit | 3d99fe05ab70666b5509c626e3155d128efdfa8b (patch) | |
tree | 9e299f06cdc3655c9a2fc44b8ad0c7712249724e /src/main/resources/fxml | |
parent | a3d56bb7db4548ab60816d169469315ac64d3c38 (diff) | |
download | sepm-groupproject-3d99fe05ab70666b5509c626e3155d128efdfa8b.tar.gz sepm-groupproject-3d99fe05ab70666b5509c626e3155d128efdfa8b.tar.xz sepm-groupproject-3d99fe05ab70666b5509c626e3155d128efdfa8b.zip |
Started adding elements, implemented first methods for archivOperation [#24990]
Diffstat (limited to 'src/main/resources/fxml')
-rw-r--r-- | src/main/resources/fxml/ArchivOperation.fxml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main/resources/fxml/ArchivOperation.fxml b/src/main/resources/fxml/ArchivOperation.fxml index 0efc9d9..6f3d883 100644 --- a/src/main/resources/fxml/ArchivOperation.fxml +++ b/src/main/resources/fxml/ArchivOperation.fxml @@ -1,6 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> +<?import javafx.scene.layout.AnchorPane?> <?import javafx.scene.layout.FlowPane?> -<FlowPane fx:id="archiveOperationFlowPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="650.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.userInterface.ArchivOperationController"/> +<FlowPane fx:id="archiveOperationFlowPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="650.0" prefWidth="800.0" visible="false" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.userInterface.ArchivOperationController"> + <children> + <AnchorPane prefHeight="650.0" prefWidth="800.0" /> + </children> +</FlowPane> |