CSY2030-assignment-2/src/main/resources/com/r0r5chach/main.fxml

30 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-01-31 17:19:32 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2023-02-01 13:51:13 +00:00
<?import javafx.scene.control.Tab?>
<?import javafx.scene.control.TabPane?>
2023-01-31 17:19:32 +00:00
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
2023-02-03 12:48:36 +00:00
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.r0r5chach.controllers.MainController">
2023-01-31 17:19:32 +00:00
<children>
2023-02-03 19:04:48 +00:00
<TabPane fx:id="tabs" tabClosingPolicy="UNAVAILABLE">
2023-02-01 13:51:13 +00:00
<tabs>
2023-02-03 19:04:48 +00:00
<Tab onSelectionChanged="#getTab" text="View">
2023-02-01 15:33:30 +00:00
<content>
2023-02-03 12:48:36 +00:00
<AnchorPane fx:id="viewTab" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" />
2023-02-01 15:33:30 +00:00
</content>
</Tab>
2023-02-03 19:06:18 +00:00
<Tab onSelectionChanged="#getTab" text="Edit">
<content>
<AnchorPane fx:id="editTab" />
</content></Tab>
2023-02-03 19:04:48 +00:00
<Tab onSelectionChanged="#getTab" text="Report">
2023-02-01 15:33:30 +00:00
<content>
2023-02-03 19:04:48 +00:00
<AnchorPane fx:id="reportTab" />
2023-02-01 15:33:30 +00:00
</content>
</Tab>
2023-02-01 13:51:13 +00:00
</tabs>
</TabPane>
2023-01-31 17:19:32 +00:00
</children>
</VBox>