diff options
author | Martin Weick <e1627760@student.tuwien.ac.at> | 2018-05-04 21:06:11 +0200 |
---|---|---|
committer | Martin Weick <e1627760@student.tuwien.ac.at> | 2018-05-04 21:06:11 +0200 |
commit | ec7198e92ff6cff8844932b54d5319e031dea9a7 (patch) | |
tree | a7103b678ff394be98070125f0f7f922de3f4691 /src/main/resources/fxml | |
parent | fdd324577135e02bb9dac3c11b04e36bb4076d73 (diff) | |
download | sepm-groupproject-ec7198e92ff6cff8844932b54d5319e031dea9a7.tar.gz sepm-groupproject-ec7198e92ff6cff8844932b54d5319e031dea9a7.tar.xz sepm-groupproject-ec7198e92ff6cff8844932b54d5319e031dea9a7.zip |
Move createCar.fxml to fxml folder
Diffstat (limited to 'src/main/resources/fxml')
-rw-r--r-- | src/main/resources/fxml/createCar.fxml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/resources/fxml/createCar.fxml b/src/main/resources/fxml/createCar.fxml new file mode 100644 index 0000000..b0898da --- /dev/null +++ b/src/main/resources/fxml/createCar.fxml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<?import javafx.scene.control.Button?> +<?import javafx.scene.control.CheckBox?> +<?import javafx.scene.control.ChoiceBox?> +<?import javafx.scene.layout.AnchorPane?> + + +<AnchorPane prefHeight="400.0" prefWidth="600.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.controller.CreateCarController"> + <children> + <ChoiceBox fx:id="cmb_Ctyp" layoutX="14.0" layoutY="14.0" prefWidth="150.0" /> + <ChoiceBox fx:id="cmb_typ" layoutX="191.0" layoutY="14.0" prefWidth="150.0" /> + <Button fx:id="btn_cancel" layoutX="500.0" layoutY="14.0" mnemonicParsing="false" text="abbrechen" /> + <Button fx:id="btn_create" layoutX="500.0" layoutY="53.0" mnemonicParsing="false" onAction="#createCar" text="Erstellen" /> + <CheckBox fx:id="cbx_NEF" layoutX="14.0" layoutY="57.0" mnemonicParsing="false" text="NEF - Halterung" /> + </children> +</AnchorPane> |