-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNewUser.fxml
47 lines (44 loc) · 1.68 KB
/
NewUser.fxml
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
47
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.effect.*?>
<?import javafx.scene.image.*?>
<?import javafx.scene.text.*?>
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane prefHeight="250.0" prefWidth="450.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/8">
<children>
<BorderPane layoutX="-2.0" prefHeight="331.0" prefWidth="450.0">
<center>
<VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" BorderPane.alignment="CENTER">
<children>
<TextField fx:id="name" onAction="#saveName">
<VBox.margin>
<Insets bottom="25.0" left="25.0" right="25.0" top="25.0" />
</VBox.margin>
</TextField>
<ListView prefHeight="200.0" prefWidth="200.0">
<VBox.margin>
<Insets bottom="25.0" left="25.0" right="25.0" top="25.0" />
</VBox.margin>
</ListView>
</children>
</VBox>
</center>
<top>
<Label text="ENTER YOUR NAME" BorderPane.alignment="CENTER">
<font>
<Font name="Comic Sans MS Bold" size="18.0" />
</font>
<BorderPane.margin>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</BorderPane.margin>
</Label>
</top>
</BorderPane>
</children>
<effect>
<InnerShadow color="#110101" />
</effect>
</AnchorPane>