-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyTripReport.fxml
29 lines (26 loc) · 1.18 KB
/
MyTripReport.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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<Pane 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">
<children>
<Text layoutX="181.0" layoutY="92.0" strokeType="OUTSIDE" strokeWidth="0.0" text="My Trip Report">
<font>
<Font size="36.0" />
</font>
</Text>
<TableView layoutX="139.0" layoutY="140.0" prefHeight="200.0" prefWidth="323.0">
<columns>
<TableColumn prefWidth="67.0" text="Date" />
<TableColumn prefWidth="62.0" text="City" />
<TableColumn prefWidth="76.0" text="Country" />
<TableColumn prefWidth="53.0" text="Rating" />
<TableColumn prefWidth="64.0" text="Note" />
</columns>
</TableView>
<Button layoutX="14.0" layoutY="14.0" mnemonicParsing="false" text="Back" />
</children>
</Pane>