diff options
author | Felix Kehrer <felix.kehrer@gmail.com> | 2018-05-07 16:02:17 +0200 |
---|---|---|
committer | Felix Kehrer <felix.kehrer@gmail.com> | 2018-05-07 16:02:17 +0200 |
commit | f15137dfbff0835a90bb345a7a4f6c8732cef46f (patch) | |
tree | 224b8b83925c909b65e74be45c762e1912c17f2a /src/main/resources/fxml | |
parent | 1243cb27f0239d4dc17fa519a0b0c51881723644 (diff) | |
parent | f8c893b3a0dc51bde50238ddf3b7d1db318cb743 (diff) | |
download | sepm-groupproject-f15137dfbff0835a90bb345a7a4f6c8732cef46f.tar.gz sepm-groupproject-f15137dfbff0835a90bb345a7a4f6c8732cef46f.tar.xz sepm-groupproject-f15137dfbff0835a90bb345a7a4f6c8732cef46f.zip |
Merge branch 'main_controller' into review_fahrzeug_anmelden
Diffstat (limited to 'src/main/resources/fxml')
-rw-r--r-- | src/main/resources/fxml/CreateOperationController.fxml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/main/resources/fxml/CreateOperationController.fxml b/src/main/resources/fxml/CreateOperationController.fxml index 949d4ec..1ba6498 100644 --- a/src/main/resources/fxml/CreateOperationController.fxml +++ b/src/main/resources/fxml/CreateOperationController.fxml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <?import javafx.scene.control.Button?> +<?import javafx.scene.control.Hyperlink?> <?import javafx.scene.control.Label?> <?import javafx.scene.control.ListView?> <?import javafx.scene.control.TextField?> @@ -59,21 +60,21 @@ </Button> </children> </AnchorPane> - <Label layoutX="55.0" layoutY="38.0" text="Anmeldungen" textFill="WHITE"> + <Hyperlink layoutX="55.0" layoutY="38.0" onAction="#onRegistrationLinkClicked" text="Anmeldungen" textFill="WHITE"> <font> <Font size="15.0" /> </font> - </Label> - <Label layoutX="802.0" layoutY="38.0" text="Personen" textFill="WHITE"> + </Hyperlink> + <Hyperlink layoutX="802.0" layoutY="38.0" onAction="#onEmployeeLinkClicked" text="Personen" textFill="WHITE"> <font> <Font size="15.0" /> </font> - </Label> - <Label layoutX="877.0" layoutY="38.0" text="Fahrzeuge" textFill="WHITE"> + </Hyperlink> + <Hyperlink layoutX="877.0" layoutY="38.0" onAction="#onVehicleLinkClicked" text="Fahrzeuge" textFill="WHITE"> <font> <Font size="15.0" /> </font> - </Label> + </Hyperlink> <AnchorPane fx:id="apActiveOperations" layoutX="973.0" layoutY="69.0" prefHeight="243.0" prefWidth="207.0" style="-fx-background-color: white;"> <children> <ListView fx:id="lvActiveOperations" layoutX="4.0" layoutY="74.0" prefHeight="242.0" prefWidth="200.0" style="-fx-background-color: white;" /> |