diff options
author | Martin Weick <e1627760@student.tuwien.ac.at> | 2018-05-04 13:51:05 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-05-04 20:37:04 +0200 |
commit | a62919d43debaa0c6baf32de9658740dc929cba6 (patch) | |
tree | a6e8ac973b6221f0e1f113054163aa2cacb809f9 /src/main/resources/controller/createCar.fxml | |
parent | 0c8e84cf27f3477b1287295f8dec2e0d1e4039d0 (diff) | |
download | sepm-groupproject-a62919d43debaa0c6baf32de9658740dc929cba6.tar.gz sepm-groupproject-a62919d43debaa0c6baf32de9658740dc929cba6.tar.xz sepm-groupproject-a62919d43debaa0c6baf32de9658740dc929cba6.zip |
tests
Diffstat (limited to 'src/main/resources/controller/createCar.fxml')
-rw-r--r-- | src/main/resources/controller/createCar.fxml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/resources/controller/createCar.fxml b/src/main/resources/controller/createCar.fxml new file mode 100644 index 0000000..2daac67 --- /dev/null +++ b/src/main/resources/controller/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.uicontroller.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> |