Essensbestellungsverwaltung/src/main/resources/com/bib/essensbestellungsverwaltung/child-view.fxml

101 lines
4.2 KiB
Plaintext
Raw Normal View History

2023-01-18 02:39:17 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
2023-01-31 15:38:08 +01:00
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.DatePicker?>
2023-01-18 02:39:17 +01:00
<?import javafx.scene.control.ListView?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
2023-01-31 15:38:08 +01:00
<AnchorPane prefHeight="700.0" prefWidth="950.0" stylesheets="@child.css" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bib.essensbestellungsverwaltung.ParentController">
2023-01-18 02:39:17 +01:00
<children>
<Text layoutX="51.0" layoutY="90.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Kinder">
<font>
<Font size="58.0" />
</font>
</Text>
2023-01-31 15:38:08 +01:00
<HBox id="contentContainer" alignment="CENTER" layoutX="8.0" layoutY="165.0" prefHeight="331.0" prefWidth="937.0">
2023-01-18 02:39:17 +01:00
<children>
<VBox id="contentContainer" prefHeight="250.0" prefWidth="256.0">
<children>
2023-01-31 15:38:08 +01:00
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Name">
2023-01-18 02:39:17 +01:00
<VBox.margin>
<Insets bottom="15.0" top="15.0" />
</VBox.margin>
</Text>
<TextField prefWidth="97.0">
<VBox.margin>
<Insets bottom="15.0" top="15.0" />
</VBox.margin>
</TextField>
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Geburtsdatum">
<VBox.margin>
<Insets bottom="15.0" top="15.0" />
</VBox.margin>
</Text>
2023-01-31 15:38:08 +01:00
<DatePicker prefHeight="26.0" prefWidth="226.0">
2023-01-18 02:39:17 +01:00
<VBox.margin>
2023-01-31 15:38:08 +01:00
<Insets top="13.0" />
2023-01-18 02:39:17 +01:00
</VBox.margin>
2023-01-31 15:38:08 +01:00
</DatePicker>
2023-01-18 02:39:17 +01:00
</children>
<HBox.margin>
<Insets left="15.0" right="15.0" />
</HBox.margin>
</VBox>
<VBox id="contentContainer" prefHeight="250.0" prefWidth="256.0">
<children>
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Alter">
<VBox.margin>
<Insets bottom="15.0" top="15.0" />
</VBox.margin>
</Text>
<TextField prefWidth="97.0">
<VBox.margin>
<Insets bottom="15.0" top="15.0" />
</VBox.margin>
</TextField>
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Gruppe">
<VBox.margin>
<Insets bottom="15.0" top="15.0" />
</VBox.margin>
</Text>
2023-01-31 15:38:08 +01:00
<ComboBox prefHeight="26.0" prefWidth="230.0">
2023-01-18 02:39:17 +01:00
<VBox.margin>
2023-01-31 15:38:08 +01:00
<Insets top="13.0" />
2023-01-18 02:39:17 +01:00
</VBox.margin>
2023-01-31 15:38:08 +01:00
</ComboBox>
2023-01-18 02:39:17 +01:00
</children>
<HBox.margin>
<Insets left="15.0" right="15.0" />
</HBox.margin>
</VBox>
<VBox id="contentContainer" prefHeight="250.0" prefWidth="256.0">
<children>
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Allergien">
<VBox.margin>
<Insets bottom="15.0" top="15.0" />
</VBox.margin>
</Text>
2023-01-31 15:38:08 +01:00
<ListView prefHeight="101.0" prefWidth="227.0" />
2023-01-18 02:39:17 +01:00
<TextField id="tfAddAllergy" promptText="Allergie hinzufügen">
<VBox.margin>
<Insets top="15.0" />
</VBox.margin>
</TextField>
</children>
<HBox.margin>
<Insets left="15.0" right="15.0" />
</HBox.margin>
</VBox>
</children>
</HBox>
2023-01-31 15:38:08 +01:00
<Button id="btAddChild" layoutX="419.0" layoutY="502.0" mnemonicParsing="false" prefHeight="26.0" prefWidth="125.0" text="Kind hinzufügen" />
2023-01-18 02:39:17 +01:00
</children>
</AnchorPane>