Skip to content
Snippets Groups Projects
Select Git revision
  • 3cdd6ee6a627a0c719fd2e0b17d7f3acd5d4fc9d
  • master default
  • v5.2.2
  • v5.2.1
  • v5.2.0
  • v5.1.2
  • v5.1.1
  • v5.1.0
  • 5.0.2
9 results

InsertTimeGUI.fxml

Blame
  • InsertTimeGUI.fxml 3.00 KiB
    <?xml version="1.0" encoding="UTF-8"?>
    
    <?import javafx.scene.control.Button?>
    <?import javafx.scene.control.ComboBox?>
    <?import javafx.scene.control.DatePicker?>
    <?import javafx.scene.control.Label?>
    <?import javafx.scene.layout.AnchorPane?>
    <?import javafx.scene.text.Font?>
    
    <AnchorPane prefHeight="400.0" prefWidth="540.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="userInterface.InsertTimeController">
       <children>
          <Label layoutX="35.0" layoutY="128.0" text="Startdatum:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <DatePicker fx:id="datePicker1" layoutX="151.0" layoutY="129.0" prefHeight="25.0" prefWidth="134.0" />
          <Label layoutX="313.0" layoutY="128.0" text="Startzeit:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <AnchorPane layoutX="409.0" layoutY="105.0">
             <children>
                <fx:include fx:id="timePicker1" source="TimePicker.fxml" />
             </children>
          </AnchorPane>
          <AnchorPane layoutX="407.0" layoutY="195.0">
             <children>
                <fx:include fx:id="timePicker2" source="TimePicker.fxml" />
             </children>
          </AnchorPane>
          <Label layoutX="321.0" layoutY="218.0" text="Endzeit:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <DatePicker fx:id="datePicker2" layoutX="154.0" layoutY="219.0" prefHeight="25.0" prefWidth="134.0" />
          <Label layoutX="48.0" layoutY="218.0" text="Enddatum:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <Label layoutX="157.0" layoutY="299.0" text="Arbeitszeit:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <Label fx:id="labelDuration" layoutX="284.0" layoutY="299.0" text="0 h 0 min 0 sek">
             <font>
                <Font size="18.0" />
             </font>
          </Label>
          <Button fx:id="buttonAdd" layoutX="174.0" layoutY="348.0" mnemonicParsing="false" onAction="#buttonAdd" text="Hinzufügen">
             <font>
                <Font name="System Bold" size="13.0" />
             </font>
          </Button>
          <Button fx:id="buttonCancel" layoutX="302.0" layoutY="348.0" mnemonicParsing="false" onAction="#buttonCancel" text="Abbrechen">
             <font>
                <Font name="System Bold" size="13.0" />
             </font>
          </Button>
          <Label layoutX="35.0" layoutY="42.0" text="Projekt:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <Label layoutX="278.0" layoutY="42.0" text="Task:">
             <font>
                <Font name="System Bold" size="18.0" />
             </font>
          </Label>
          <ComboBox fx:id="comboBoxProject" editable="true" layoutX="114.0" layoutY="43.0" prefWidth="150.0" />
          <ComboBox fx:id="comboBoxTask" editable="true" layoutX="332.0" layoutY="43.0" prefWidth="150.0" />
       </children>
    </AnchorPane>