BestelluebersichtMitarbeiter Maske (fast fertig)

This commit is contained in:
Avapox
2023-12-18 09:03:28 +01:00
parent 05c829a633
commit 62521c5b5c
4 changed files with 116 additions and 18 deletions

View File

@@ -1,24 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<!-- Erstellt von Stefan Groß -->
<VBox xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
fx:controller="de.subway_surfers.vpr_app.BestelluebersichtMitarbeiter"
prefHeight="400.0" prefWidth="600.0" stylesheets="@layout.css">
<VBox prefHeight="400.0" prefWidth="600.0" stylesheets="@layout.css" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.subway_surfers.vpr_app.BestelluebersichtMitarbeiter">
<BorderPane styleClass="kopfzeile">
<left>
<Button text="Zurück" fx:id="zurueck"/>
<Button fx:id="zurueck" text="Zurück"/>
</left>
<right>
<Button text="Abmelden" fx:id="abmelden"/>
<Button fx:id="abmelden" text="Abmelden" onAction="#onAbmelden"/>
</right>
</BorderPane>
<ScrollPane fitToHeight="true" fitToWidth="true">
<Label text="Test"/>
<ListView fx:id="listViewBestellMitarbeiter"/>
<ScrollPane fx:id="scrollPane" fitToWidth="true" VBox.vgrow="ALWAYS">
<padding>
<Insets bottom="30.0" left="30.0" right="30.0" top="30.0" />
</padding>
<Accordion fx:id="accordion">
</Accordion>
</ScrollPane>
</VBox>
</VBox>

View File

@@ -61,3 +61,9 @@
-fx-font-size: 30;
}
.titledPaneUeberschrift > .title {
-fx-pref-height: 50;
-fx-padding: 10 10 16 10;
-fx-font-size: 15;
-fx-font-weight: bold;
}