blob: 82c23edd25aef43a7676d81617bf90513506df6d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" 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.DetailArchiveOperationController">
<children>
<HBox prefHeight="100.0" prefWidth="200.0" spacing="100.0">
<children>
<VBox fx:id="vBoxVehicle" prefHeight="200.0" prefWidth="100.0" />
<VBox fx:id="vBoxPeople" prefHeight="200.0" prefWidth="100.0" spacing="10.0" />
</children>
<padding>
<Insets right="10.0" />
</padding>
</HBox>
</children>
</AnchorPane>
|