UpcommingMatches.fxml 872 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import javafx.scene.control.Tab?>
  3. <?import javafx.scene.control.TabPane?>
  4. <?import javafx.scene.layout.AnchorPane?>
  5. <AnchorPane stylesheets="@css/StrategyStyles.css" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="controllers.StrategyTesterController">
  6. <children>
  7. <TabPane tabClosingPolicy="UNAVAILABLE">
  8. <tabs>
  9. <Tab text="Todays Matches">
  10. <content>
  11. <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
  12. </content>
  13. </Tab>
  14. <Tab text="Tommorrows Matches">
  15. <content>
  16. <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0" />
  17. </content>
  18. </Tab>
  19. </tabs>
  20. </TabPane>
  21. </children>
  22. </AnchorPane>