-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddWindow.fxml
More file actions
22 lines (20 loc) · 1.26 KB
/
AddWindow.fxml
File metadata and controls
22 lines (20 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ChoiceBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane prefHeight="446.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.172-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.AddWindow">
<children>
<TextField fx:id="TitleField" layoutX="115.0" layoutY="50.0" prefHeight="31.0" prefWidth="445.0" />
<TextField fx:id="DateField" layoutX="115.0" layoutY="170.0" prefHeight="31.0" prefWidth="445.0" />
<TextArea fx:id="DescArea" layoutX="115.0" layoutY="230.0" prefHeight="150.0" prefWidth="445.0" />
<Button fx:id="addButton" layoutX="276.0" layoutY="389.0" mnemonicParsing="false" onAction="#AddButton" text="Add" />
<Label layoutX="77.0" layoutY="50.0" text="Title" />
<Label layoutX="46.0" layoutY="170.0" text="Exp. Date" />
<Label layoutX="32.0" layoutY="230.0" text="Description" />
<ChoiceBox fx:id="choice" layoutX="115.0" layoutY="110.0" prefWidth="150.0" />
<Label layoutX="58.0" layoutY="110.0" text="Priority" />
</children>
</AnchorPane>