47 lines
2.2 KiB
Plaintext
Raw Normal View History

2021-11-25 11:34:33 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
2021-11-25 21:12:45 +01:00
<?import com.sun.javafx.scene.control.DatePickerContent?>
2021-11-25 15:04:40 +01:00
<GridPane xmlns="http://javafx.com/javafx/11.0.2" xmlns:fx="http://javafx.com/fxml/1" fx:controller="client.MainController">
<columnConstraints>
<ColumnConstraints/>
<ColumnConstraints/>
<ColumnConstraints/>
<ColumnConstraints halignment="RIGHT"/>
2021-11-25 21:12:45 +01:00
<ColumnConstraints halignment="RIGHT"/>
2021-11-25 15:04:40 +01:00
</columnConstraints>
<rowConstraints>
<RowConstraints vgrow="ALWAYS" />
<RowConstraints vgrow="ALWAYS" />
<RowConstraints vgrow="ALWAYS" />
<RowConstraints vgrow="ALWAYS" />
<RowConstraints vgrow="ALWAYS" />
<RowConstraints vgrow="ALWAYS" />
<RowConstraints vgrow="ALWAYS" />
<RowConstraints vgrow="ALWAYS" />
</rowConstraints>
<Label styleClass="mainLabel">Termin anlegen</Label>
<Label styleClass="inputLabel" GridPane.rowIndex="1">Datum:</Label>
<Label styleClass="inputLabel" GridPane.rowIndex="2">Titel:</Label>
<Label styleClass="inputLabel" GridPane.rowIndex="3">Zeit:</Label>
<Label styleClass="inputLabel" GridPane.rowIndex="4">Typ:</Label>
<Label styleClass="inputLabel" GridPane.rowIndex="5">Priorität:</Label>
<Label styleClass="inputLabel" GridPane.rowIndex="6">Ganztägig:</Label>
<DatePicker GridPane.columnIndex="2" GridPane.rowIndex="1" maxWidth="300" minWidth="300"/>
<TextField GridPane.columnIndex="2" GridPane.rowIndex="2" maxWidth="300" minWidth="300"/>
2021-11-25 21:12:45 +01:00
<DatePicker GridPane.columnIndex="2" GridPane.rowIndex="3" maxWidth="300" minWidth="300"/>
2021-11-25 15:04:40 +01:00
<ComboBox GridPane.columnIndex="2" GridPane.rowIndex="4" maxWidth="300" minWidth="300"/>
<ComboBox GridPane.columnIndex="2" GridPane.rowIndex="5" maxWidth="100" minWidth="100"/>
<CheckBox GridPane.columnIndex="2" GridPane.rowIndex="6"/>
2021-11-25 21:12:45 +01:00
<Button styleClass="mainButton" GridPane.columnIndex="4" GridPane.rowIndex="7" onAction="#createBtnClick" maxWidth="150" minWidth="150">Anlegen</Button>
<Button GridPane.columnIndex="3" GridPane.rowIndex="7" onAction="#abortBtnClick" maxWidth="150" minWidth="150" >Abbrechen</Button>
2021-11-25 15:04:40 +01:00
2021-11-25 11:34:33 +01:00
</GridPane>