Gericht erstellen Maske

This commit is contained in:
SvenAlte
2023-12-13 18:51:01 +01:00
parent cf4014f552
commit 99419ed471
7 changed files with 107 additions and 5 deletions

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<BorderPane xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="de.subway_surfers.vpr_app.GerichterstellungMitarbeiterView"
prefHeight="400.0" prefWidth="600.0"
stylesheets="@layout.css" styleClass="main">
<center>
<VBox styleClass="gerichterstellung_felder">
<TextField fx:id="eingabeName" promptText="Name 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" />
</VBox>
</center>
<bottom>
<BorderPane>
<right>
<HBox styleClass="button_untenrechts">
<Button text="Speichern"/>
</HBox>
</right>
</BorderPane>
</bottom>
</BorderPane>

View File

@@ -23,11 +23,11 @@
<BorderPane styleClass="main">
<left>
<VBox styleClass="hauptmenue_buttons_links">
<Button text="Speiseplan"/>
<Button text="Speiseplan" onAction="#onSpeiseplanClick"/>
<Button text="Alle Bestellungen anzeigen"/>
<Button text="Rechnungen herunterladen"/>
<Button text="Daten importieren/Exportieren"/>
<Button text="Account anlegen" onAction="#onAccountAnlegen"/>
<Button text="Account anlegen" onAction="#onAccountAnlegenClick"/>
</VBox>
</left>
<right>

View File

@@ -18,7 +18,7 @@
-fx-padding: 20;
}
.hauptmenue_buttons_links{
.hauptmenue_buttons_links, .gerichterstellung_felder{
-fx-spacing: 20;
}