MatchTabBuilder.fxml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import javafx.geometry.Insets?>
  3. <?import javafx.scene.control.Button?>
  4. <?import javafx.scene.control.SplitPane?>
  5. <?import javafx.scene.control.TableView?>
  6. <?import javafx.scene.control.TextField?>
  7. <?import javafx.scene.layout.AnchorPane?>
  8. <?import javafx.scene.layout.FlowPane?>
  9. <?import javafx.scene.layout.HBox?>
  10. <?import javafx.scene.layout.VBox?>
  11. <?import javafx.scene.text.Text?>
  12. <AnchorPane xmlns="http://javafx.com/javafx/18" xmlns:fx="http://javafx.com/fxml/1" fx:controller="controllers.MatchTabController">
  13. <children>
  14. <SplitPane dividerPositions="0.7305764411027569" orientation="VERTICAL" prefHeight="800.0" prefWidth="1000.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
  15. <items>
  16. <VBox alignment="center" minHeight="0.0" minWidth="0.0" prefHeight="700.0" prefWidth="1000.0">
  17. <children>
  18. <FlowPane prefHeight="30.0" prefWidth="998.0">
  19. <children>
  20. <Text strokeType="OUTSIDE" strokeWidth="0.0" text="This weeks bet amount" />
  21. <TextField fx:id="betAmountTextField" />
  22. </children>
  23. </FlowPane>
  24. <TableView fx:id="matchTable" prefHeight="580.0" prefWidth="1427.0">
  25. </TableView>
  26. </children>
  27. </VBox>
  28. <VBox alignment="center" minHeight="0.0" minWidth="0.0" prefHeight="229.0" prefWidth="998.0">
  29. <children>
  30. <HBox prefHeight="23.0" prefWidth="998.0">
  31. <children>
  32. <Button mnemonicParsing="false" onAction="#addRowAction" text="Add New Row" />
  33. <Text strokeType="OUTSIDE" strokeWidth="0.0" text="Över 1.5 om score &gt; 5 och under 4.5 om score &lt; 3" wrappingWidth="303.486328125" />
  34. </children>
  35. </HBox>
  36. <TableView fx:id="activeBettingTable" layoutY="25.0" prefHeight="189.0" prefWidth="998.0" />
  37. </children>
  38. </VBox>
  39. </items>
  40. </SplitPane>
  41. </children>
  42. </AnchorPane>