Merge pull request 'Test' (#22) from stefan into master

Reviewed-on: #22
This commit is contained in:
2024-01-23 15:36:46 +01:00
5 changed files with 205 additions and 37 deletions

View File

@@ -6,6 +6,7 @@
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.geometry.Insets?>
<BorderPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="de.subway_surfers.vpr_app.GerichterstellungMitarbeiterView"
@@ -14,19 +15,22 @@
<center>
<VBox styleClass="gerichterstellung_felder">
<TextField fx:id="eingabeName" promptText="Name des Gerichtes" focusTraversable="false"/>
<TextField fx:id="eingabePreis" promptText="Preis des Gerichtes" focusTraversable="false"/>
<TextArea fx:id="eingabeBeschreibung" promptText="Beschreibung" focusTraversable="false"/>
<HBox>
<TextField fx:id="eingabeInhaltsstoffe" promptText="Inhaltsstoffe" focusTraversable="false"/>
<Button fx:id="buttonInhaltsstoffe" onAction="#onButtonInhaltsstoffeClick" text="Hinzufügen"/>
</HBox>
<HBox fx:id="anzeigeInhaltsstoffe" />
<HBox fx:id="anzeigeInhaltsstoffe" minHeight="30"/>
<DatePicker fx:id="datePicker" maxWidth="Infinity"/>
<Label fx:id="status"/>
</VBox>
</center>
<bottom>
<BorderPane>
<right>
<HBox styleClass="button_untenrechts">
<Button text="Speichern" defaultButton="true"/>
<Button fx:id="speichernButton" text="Speichern" defaultButton="true" onAction="#onSpeichernButtonClick"/>
</HBox>
</right>
</BorderPane>