| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?import javafx.geometry.Insets?>
- <?import javafx.scene.control.Button?>
- <?import javafx.scene.control.SplitPane?>
- <?import javafx.scene.control.TableView?>
- <?import javafx.scene.control.TextField?>
- <?import javafx.scene.layout.AnchorPane?>
- <?import javafx.scene.layout.FlowPane?>
- <?import javafx.scene.layout.HBox?>
- <?import javafx.scene.layout.VBox?>
- <?import javafx.scene.text.Text?>
- <AnchorPane xmlns="http://javafx.com/javafx/18" xmlns:fx="http://javafx.com/fxml/1" fx:controller="controllers.MatchTabController">
- <children>
- <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">
- <items>
- <VBox alignment="center" minHeight="0.0" minWidth="0.0" prefHeight="700.0" prefWidth="1000.0">
- <children>
- <FlowPane prefHeight="30.0" prefWidth="998.0">
- <children>
- <Text strokeType="OUTSIDE" strokeWidth="0.0" text="This weeks bet amount" />
- <TextField fx:id="betAmountTextField" />
- </children>
- </FlowPane>
- <TableView fx:id="matchTable" prefHeight="580.0" prefWidth="1427.0">
- </TableView>
- </children>
- </VBox>
- <VBox alignment="center" minHeight="0.0" minWidth="0.0" prefHeight="229.0" prefWidth="998.0">
- <children>
- <HBox prefHeight="23.0" prefWidth="998.0">
- <children>
- <Button mnemonicParsing="false" onAction="#addRowAction" text="Add New Row" />
- <Text strokeType="OUTSIDE" strokeWidth="0.0" text="Över 1.5 om score > 5 och under 4.5 om score < 3" wrappingWidth="303.486328125" />
- </children>
- </HBox>
- <TableView fx:id="activeBettingTable" layoutY="25.0" prefHeight="189.0" prefWidth="998.0" />
- </children>
- </VBox>
- </items>
- </SplitPane>
- </children>
- </AnchorPane>
|