| 12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?import javafx.scene.control.Tab?>
- <?import javafx.scene.control.TabPane?>
- <?import javafx.scene.layout.AnchorPane?>
- <AnchorPane stylesheets="@css/StrategyStyles.css" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="controllers.StrategyTesterController">
- <children>
- <TabPane tabClosingPolicy="UNAVAILABLE">
- <tabs>
- <Tab text="Todays Matches">
- <content>
- <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
- </content>
- </Tab>
- <Tab text="Tommorrows Matches">
- <content>
- <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
- </content>
- </Tab>
- </tabs>
- </TabPane>
- </children>
- </AnchorPane>
|