diff options
| author | Viktoria Pundy <viktoria.pundy@aon.at> | 2018-05-15 21:16:37 +0200 | 
|---|---|---|
| committer | Tharre <tharre3@gmail.com> | 2018-05-22 15:30:58 +0200 | 
| commit | 839bc87c66c7b199e2dfc754792d0dcaeaec3fde (patch) | |
| tree | 73e315d4a73198bea2f416a13339e74b97cb84a2 /src/main/resources/fxml | |
| parent | 3d99fe05ab70666b5509c626e3155d128efdfa8b (diff) | |
| download | sepm-groupproject-839bc87c66c7b199e2dfc754792d0dcaeaec3fde.tar.gz sepm-groupproject-839bc87c66c7b199e2dfc754792d0dcaeaec3fde.tar.xz sepm-groupproject-839bc87c66c7b199e2dfc754792d0dcaeaec3fde.zip  | |
Changed archiv to standalone window [#24990]
Changed methods in order to make ArchivOperation a window independent of createOperation, buttons are not yet visible
Diffstat (limited to 'src/main/resources/fxml')
| -rw-r--r-- | src/main/resources/fxml/ArchivOperation.fxml | 16 | 
1 files changed, 11 insertions, 5 deletions
diff --git a/src/main/resources/fxml/ArchivOperation.fxml b/src/main/resources/fxml/ArchivOperation.fxml index 6f3d883..db7d319 100644 --- a/src/main/resources/fxml/ArchivOperation.fxml +++ b/src/main/resources/fxml/ArchivOperation.fxml @@ -4,8 +4,14 @@  <?import javafx.scene.layout.FlowPane?> -<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> +<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" +  prefHeight="650.0" prefWidth="1200.0" style="-fx-background-color: BLACK;" +  fx:controller="at.ac.tuwien.sepm.assignment.groupphase.einsatzverwaltung.userInterface.ArchivOperationController" +  xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1"> +  <children> +    <FlowPane fx:id="archiveOperationFlowPane" prefHeight="650.0" prefWidth="800.0" +      AnchorPane.leftAnchor="200.0"/> +    <AnchorPane prefHeight="650.0" prefWidth="800.0" +      style="-fx-background-color: rgba(239,235,232,1);" AnchorPane.leftAnchor="200.0"/> +  </children> +</AnchorPane>  | 
