70 lines
3.3 KiB
XML
70 lines
3.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.*?>
|
|
<?import javafx.scene.control.*?>
|
|
<?import javafx.scene.layout.*?>
|
|
<?import javafx.scene.text.*?>
|
|
<?import org.controlsfx.control.*?>
|
|
|
|
<AnchorPane prefHeight="700.0" prefWidth="950.0" stylesheets="@child.css" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bib.essensbestellungsverwaltung.ChildController">
|
|
<children>
|
|
<Text layoutX="51.0" layoutY="90.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Kinder">
|
|
<font>
|
|
<Font size="58.0" />
|
|
</font>
|
|
</Text>
|
|
<HBox id="contentContainer" alignment="CENTER" layoutX="8.0" layoutY="165.0" prefHeight="127.0" prefWidth="937.0">
|
|
<children>
|
|
<VBox id="contentContainer" prefHeight="250.0" prefWidth="256.0">
|
|
<children>
|
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Vorname">
|
|
<VBox.margin>
|
|
<Insets bottom="15.0" top="15.0" />
|
|
</VBox.margin>
|
|
</Text>
|
|
<TextField fx:id="firstName" prefWidth="97.0">
|
|
<VBox.margin>
|
|
<Insets bottom="15.0" top="15.0" />
|
|
</VBox.margin>
|
|
</TextField>
|
|
</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="Nachname">
|
|
<VBox.margin>
|
|
<Insets bottom="15.0" top="15.0" />
|
|
</VBox.margin>
|
|
</Text>
|
|
<TextField fx:id="lastName" prefWidth="97.0">
|
|
<VBox.margin>
|
|
<Insets bottom="15.0" top="15.0" />
|
|
</VBox.margin>
|
|
</TextField>
|
|
</children>
|
|
<HBox.margin>
|
|
<Insets left="15.0" right="15.0" />
|
|
</HBox.margin>
|
|
</VBox>
|
|
</children>
|
|
</HBox>
|
|
<Button id="btAddChild" fx:id="kindHinzufügenButton" layoutX="779.0" layoutY="646.0" mnemonicParsing="false" onAction="#onKindHinzufügen" prefHeight="26.0" prefWidth="125.0" text="Kind hinzufügen" />
|
|
<ChoiceBox fx:id="childChoiceBox" layoutX="704.0" layoutY="62.0" onAction="#onSelectChild" prefWidth="150.0" />
|
|
<Label layoutX="704.0" layoutY="44.0" text="Kind" />
|
|
<VBox id="contentContainer" layoutX="493.0" layoutY="330.0" prefHeight="250.0" prefWidth="256.0" spacing="20.0">
|
|
<children>
|
|
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Allergien">
|
|
<VBox.margin>
|
|
<Insets bottom="15.0" top="15.0" />
|
|
</VBox.margin>
|
|
</Text>
|
|
<CheckComboBox fx:id="allergienComboBox" prefHeight="25.0" prefWidth="200.0" />
|
|
</children>
|
|
</VBox>
|
|
<Button id="btAddChild" fx:id="kindLoeschenButton" layoutX="621.0" layoutY="646.0" mnemonicParsing="false" onAction="#onKindLoeschen" prefHeight="26.0" prefWidth="125.0" text="Kind löschen" />
|
|
</children>
|
|
</AnchorPane>
|