58 lines
2.7 KiB
XML
58 lines
2.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.DatePicker?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.control.RadioButton?>
|
|
<?import javafx.scene.control.ToggleGroup?>
|
|
<?import javafx.scene.layout.AnchorPane?>
|
|
<?import javafx.scene.layout.HBox?>
|
|
<?import javafx.scene.layout.VBox?>
|
|
|
|
|
|
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="150.0"
|
|
prefWidth="308.0" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ch.zhaw.gartenverwaltung.SelectSowDayController">
|
|
<children>
|
|
<VBox maxWidth="1.7976931348623157E308" prefHeight="408.0" prefWidth="640.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
|
|
<children>
|
|
<Label fx:id="popup_label" text="Label" />
|
|
<HBox alignment="CENTER" prefHeight="293.0" prefWidth="631.0">
|
|
<children>
|
|
<VBox alignment="CENTER_LEFT" prefHeight="88.0" prefWidth="155.0">
|
|
<children>
|
|
<RadioButton fx:id="sow_radio" mnemonicParsing="false" selected="true" text="Sow">
|
|
<VBox.margin>
|
|
<Insets bottom="10.0" />
|
|
</VBox.margin>
|
|
<toggleGroup>
|
|
<ToggleGroup fx:id="group" />
|
|
</toggleGroup>
|
|
</RadioButton>
|
|
<RadioButton fx:id="harvest_radio" mnemonicParsing="false" text="Harvest" toggleGroup="$group" />
|
|
</children>
|
|
<HBox.margin>
|
|
<Insets top="10.0" />
|
|
</HBox.margin>
|
|
</VBox>
|
|
<DatePicker fx:id="datepicker" />
|
|
</children>
|
|
</HBox>
|
|
<HBox fillHeight="false" prefHeight="54.0" prefWidth="631.0" VBox.vgrow="NEVER">
|
|
<children>
|
|
<Button fx:id="save_button" mnemonicParsing="false" onAction="#save" prefHeight="25.0" prefWidth="53.0" text="Save">
|
|
<HBox.margin>
|
|
<Insets right="10.0" />
|
|
</HBox.margin>
|
|
</Button>
|
|
<Button fx:id="cancel_button" mnemonicParsing="false" onAction="#cancel" text="Cancel" />
|
|
</children>
|
|
</HBox>
|
|
</children>
|
|
<padding>
|
|
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
|
|
</padding>
|
|
</VBox>
|
|
</children>
|
|
</AnchorPane>
|