-
Notifications
You must be signed in to change notification settings - Fork 0
/
ViewCityEntryScene.fxml
71 lines (69 loc) · 2.87 KB
/
ViewCityEntryScene.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/20.0.1" xmlns:fx="http://javafx.com/fxml/1">
<center>
<VBox prefHeight="200.0" prefWidth="100.0" BorderPane.alignment="CENTER">
<children>
<VBox alignment="TOP_CENTER" prefHeight="305.0" prefWidth="500.0">
<children>
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="View City Entry">
<font>
<Font size="21.0" />
</font>
</Text>
<HBox alignment="CENTER" prefHeight="43.0" prefWidth="500.0" spacing="100.0">
<padding>
<Insets bottom="10.0" top="10.0" />
</padding>
<children>
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="City" />
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Date" />
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Rating" />
</children>
</HBox>
<HBox prefHeight="146.0" prefWidth="500.0" spacing="20.0" style="-fx-background-color: #d3d3d3;">
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</padding>
<children>
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Note" />
</children>
<VBox.margin>
<Insets bottom="10.0" top="10.0" />
</VBox.margin>
</HBox>
<Button mnemonicParsing="false" text="Report" />
</children>
<padding>
<Insets left="30.0" right="30.0" />
</padding>
</VBox>
</children>
<BorderPane.margin>
<Insets />
</BorderPane.margin>
<padding>
<Insets left="50.0" right="50.0" />
</padding>
</VBox>
</center>
<top>
<HBox prefHeight="63.0" prefWidth="600.0" spacing="1.0" BorderPane.alignment="CENTER">
<children>
<Button alignment="TOP_LEFT" mnemonicParsing="false" text="Back" />
</children>
<BorderPane.margin>
<Insets />
</BorderPane.margin>
<padding>
<Insets left="10.0" top="10.0" />
</padding>
</HBox>
</top>
</BorderPane>