-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPopup.fxml
More file actions
60 lines (58 loc) · 3.2 KB
/
Copy pathPopup.fxml
File metadata and controls
60 lines (58 loc) · 3.2 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.RowConstraints?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/25" xmlns:fx="http://javafx.com/fxml/1">
<children>
<BorderPane prefHeight="108.0" prefWidth="600.0">
<center>
<Label contentDisplay="CENTER" text="Add New Kanji" textAlignment="CENTER" BorderPane.alignment="CENTER">
<font>
<Font name="Noto Sans Bold" size="24.0" />
</font>
</Label>
</center>
</BorderPane>
<GridPane prefHeight="179.0" prefWidth="600.0">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" maxWidth="294.0203917796094" minWidth="10.0" prefWidth="151.30611658950323" />
<ColumnConstraints hgrow="SOMETIMES" maxWidth="454.0000249154869" minWidth="10.0" prefWidth="399.1428395517174" />
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
</rowConstraints>
<VBox.margin>
<Insets left="30.0" right="20.0" />
</VBox.margin>
<children>
<Label text="Kanji : " textAlignment="CENTER" GridPane.halignment="RIGHT" />
<Label text="Meaning : " textAlignment="CENTER" GridPane.halignment="RIGHT" GridPane.rowIndex="1" />
<Label text="Onyomi : " textAlignment="CENTER" GridPane.halignment="RIGHT" GridPane.rowIndex="2" />
<Label text="Kunyomi : " textAlignment="CENTER" GridPane.halignment="RIGHT" GridPane.rowIndex="3" />
<Label text="No. of Strokes : " textAlignment="CENTER" GridPane.halignment="RIGHT" GridPane.rowIndex="4" />
<TextField prefHeight="26.0" prefWidth="235.0" GridPane.columnIndex="1" />
<TextField GridPane.columnIndex="1" GridPane.rowIndex="1" />
<TextField GridPane.columnIndex="1" GridPane.rowIndex="2" />
<TextField GridPane.columnIndex="1" GridPane.rowIndex="3" />
<TextField GridPane.columnIndex="1" GridPane.rowIndex="4" />
</children>
</GridPane>
<HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0" spacing="80.0">
<children>
<Button defaultButton="true" mnemonicParsing="false" text="Save" />
<Button cancelButton="true" mnemonicParsing="false" text="Cancel" />
</children></HBox>
</children>
</VBox>