summaryrefslogtreecommitdiffstats
path: root/src/main/resources/fxml/DetailArchiveOperation.fxml
diff options
context:
space:
mode:
authorViktoria Pundy <viktoria.pundy@aon.at>2018-06-02 20:18:32 +0200
committerTharre <tharre3@gmail.com>2018-06-13 18:35:20 +0200
commit508353d4f9d0d6716cabc70f5e9c6c2712264a9b (patch)
treeff00244cd7468396f980ec0de55350ef41ba3894 /src/main/resources/fxml/DetailArchiveOperation.fxml
parent8e9d7d1cb5ffd184ee63706350fa664aa9007fa6 (diff)
downloadsepm-groupproject-508353d4f9d0d6716cabc70f5e9c6c2712264a9b.tar.gz
sepm-groupproject-508353d4f9d0d6716cabc70f5e9c6c2712264a9b.tar.xz
sepm-groupproject-508353d4f9d0d6716cabc70f5e9c6c2712264a9b.zip
Added fxml and controller for archive window [#27299]
Added fxml-File, which contains a small window for the detail view in the archive window. It contains two vboxes, in which vehicle and staff are stored
Diffstat (limited to 'src/main/resources/fxml/DetailArchiveOperation.fxml')
-rw-r--r--src/main/resources/fxml/DetailArchiveOperation.fxml17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/resources/fxml/DetailArchiveOperation.fxml b/src/main/resources/fxml/DetailArchiveOperation.fxml
new file mode 100644
index 0000000..29bdeb7
--- /dev/null
+++ b/src/main/resources/fxml/DetailArchiveOperation.fxml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<?import javafx.scene.layout.AnchorPane?>
+<?import javafx.scene.layout.HBox?>
+<?import javafx.scene.layout.VBox?>
+
+
+<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.controller.DetailArchiveOperationController" minWidth="-Infinity" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1">
+ <children>
+ <HBox prefHeight="100.0" prefWidth="200.0">
+ <children>
+ <VBox fx:id="vBoxVehicle" prefHeight="200.0" prefWidth="100.0" />
+ <VBox fx:id="vBoxPeople" prefHeight="200.0" prefWidth="100.0" />
+ </children>
+ </HBox>
+ </children>
+</AnchorPane>