This commit is contained in:
Avapox
2024-01-23 15:35:25 +01:00
parent c6b4bc1cd1
commit f43dad000f
5 changed files with 206 additions and 38 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>