23 lines
978 B
Plaintext
Raw Normal View History

2023-01-17 15:58:22 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
2023-02-04 19:53:40 +01:00
<?import javafx.scene.text.*?>
2023-01-17 15:58:22 +01:00
2023-02-04 19:53:40 +01:00
<AnchorPane prefHeight="700.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.bib.essensbestellungsverwaltung.DailyOrderController">
<children>
<HBox alignment="CENTER" layoutX="58.0" layoutY="221.0" prefHeight="349.0" prefWidth="683.0">
<children>
<ListView fx:id="listView" prefHeight="349.0" prefWidth="300.0" />
</children>
</HBox>
<Text layoutX="88.0" layoutY="68.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Tagesbestellung">
<font>
<Font name="System Bold" size="25.0" />
</font>
</Text>
<DatePicker fx:id="datePicker" layoutX="88.0" layoutY="142.0" onAction="#onChangeDate" />
<Label layoutX="88.0" layoutY="121.0" text="Datum" />
</children>
2023-01-17 15:58:22 +01:00
</AnchorPane>