-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonlineSaleReport-view.fxml
23 lines (21 loc) · 1.07 KB
/
onlineSaleReport-view.fxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPane prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="org.example.mangogardenestateoperations.OnlineSaleReportViewController">
<children>
<TableView fx:id="onlineSaleReportTableView" layoutX="4.0" layoutY="118.0" prefHeight="200.0" prefWidth="592.0">
<columns>
<TableColumn fx:id="onlineSaleReportTableViewNameCol" prefWidth="353.5999755859375" text="Name" />
<TableColumn fx:id="onlineSaleReportonlineSaleReportTableViewDateCol" prefWidth="239.20001220703125" text="Date" />
</columns>
</TableView>
<Label layoutX="4.0" layoutY="65.0" prefHeight="42.0" prefWidth="206.0" text="Online Sales Report:">
<font>
<Font size="14.0" />
</font>
</Label>
</children>
</AnchorPane>