forked from AhmdSobhy/Library-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFXMLDocument.fxml
More file actions
46 lines (44 loc) · 2.14 KB
/
Copy pathFXMLDocument.fxml
File metadata and controls
46 lines (44 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane id="AnchorPane" prefHeight="373.0" prefWidth="503.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/11.0.1" fx:controller="javafxapplication6.FXMLDocumentController">
<children>
<TextField layoutY="21.0" prefHeight="26.0" prefWidth="483.0" promptText="Name" AnchorPane.rightAnchor="0.0">
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</padding>
</TextField>
<TextField layoutX="10.0" layoutY="71.0" prefHeight="26.0" prefWidth="483.0" promptText="Membrer ID" AnchorPane.rightAnchor="0.0">
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</padding>
</TextField>
<TextField layoutX="10.0" layoutY="120.0" prefHeight="26.0" prefWidth="483.0" promptText="Email" AnchorPane.rightAnchor="0.0">
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</padding>
</TextField>
<TextField layoutX="20.0" layoutY="173.0" prefHeight="26.0" prefWidth="483.0" promptText="Phone" AnchorPane.rightAnchor="0.0">
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</padding>
</TextField>
<Button layoutY="282.0" mnemonicParsing="false" prefHeight="90.0" prefWidth="250.0" text="Save">
<padding>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
</padding>
</Button>
<Button layoutX="252.0" layoutY="282.0" mnemonicParsing="false" prefHeight="90.0" prefWidth="250.0" text="Cancel">
<padding>
<Insets bottom="5.0" left="5.0" right="5.0" top="5.0" />
</padding>
</Button>
<TextField layoutX="20.0" layoutY="218.0" prefHeight="26.0" prefWidth="483.0" promptText="Address">
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</padding>
</TextField>
</children>
</AnchorPane>