PastResults.fxml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import javafx.scene.control.Button?>
  3. <?import javafx.scene.control.DatePicker?>
  4. <?import javafx.scene.control.ScrollPane?>
  5. <?import javafx.scene.control.ComboBox?>
  6. <?import javafx.scene.layout.AnchorPane?>
  7. <?import javafx.scene.layout.FlowPane?>
  8. <?import javafx.scene.layout.VBox?>
  9. <AnchorPane fx:id="basePane" prefHeight="414.0" prefWidth="736.0" xmlns="http://javafx.com/javafx/15.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="controllers.PastResultsController">
  10. <children>
  11. <VBox prefHeight="414.0" prefWidth="736.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
  12. <children>
  13. <AnchorPane>
  14. <children>
  15. <FlowPane maxHeight="30.0" minHeight="30.0" prefHeight="30.0" prefWidth="598.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
  16. <children>
  17. <DatePicker fx:id="date" prefHeight="30.0" prefWidth="209.0" />
  18. <Button fx:id="getResults" mnemonicParsing="false" prefHeight="30.0" prefWidth="96.0" text="GetResults" onAction="#getResults" />
  19. <ComboBox id="SportComboBox" fx:id="sportSelector" onAction="#SportSelected" prefHeight="25.0" prefWidth="200.0" promptText="Sport" />
  20. <ComboBox id="CountryComboBox" fx:id="countrySelector" disable="true" onAction="#CountrySelected" prefHeight="25.0" prefWidth="200.0" promptText="Country" />
  21. <ComboBox id="LeagueComboBox" fx:id="leagueSelector" disable="true" onAction="#LeagueSelected" prefHeight="25.0" prefWidth="200.0" promptText="League" />
  22. </children>
  23. </FlowPane>
  24. </children>
  25. </AnchorPane>
  26. <AnchorPane>
  27. <children>
  28. <ScrollPane fx:id="resultsPanel" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
  29. </children>
  30. </AnchorPane>
  31. </children>
  32. </VBox>
  33. </children>
  34. </AnchorPane>