-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayerSetting.fxml
executable file
·69 lines (67 loc) · 4.33 KB
/
PlayerSetting.fxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ListView?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.StackPane?>
<?import javafx.scene.text.Font?>
<StackPane fx:id="root1" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="789.0" prefWidth="711.0" xmlns="http://javafx.com/javafx/8.0.141" xmlns:fx="http://javafx.com/fxml/1" fx:controller="grid.play_seti">
<children>
<ImageView fitHeight="792.0" fitWidth="736.0" pickOnBounds="true">
<image>
<Image url="@12.jpg" />
</image>
</ImageView>
<AnchorPane prefHeight="835.0" prefWidth="711.0">
<children>
<ListView layoutX="99.0" layoutY="158.0" opacity="0.35" prefHeight="572.0" prefWidth="513.0" style="-fx-background-color: BLACK;" />
<Button fx:id="p1" layoutX="102.0" layoutY="75.0" mnemonicParsing="false" onAction="#seti" opacity="0.6" prefHeight="83.0" prefWidth="513.0" style="-fx-background-color: BLACK; -fx-border-color: WHITE;" text="Player 1" textAlignment="CENTER" textFill="#f2eaea" AnchorPane.rightAnchor="96.0" AnchorPane.topAnchor="75.0">
<font>
<Font size="36.0" />
</font>
</Button>
<Button fx:id="p2" layoutX="102.0" layoutY="165.0" mnemonicParsing="false" onAction="#seti" opacity="0.6" prefHeight="83.0" prefWidth="513.0" style="-fx-background-color: BLACK; -fx-border-color: RED;" text="Player 2" textAlignment="CENTER" textFill="#f2eaea">
<font>
<Font size="36.0" />
</font>
</Button>
<Button fx:id="p3" layoutX="102.0" layoutY="254.0" mnemonicParsing="false" onAction="#seti" opacity="0.6" prefHeight="83.0" prefWidth="513.0" style="-fx-background-color: BLACK; -fx-border-color: GREEN;" text="Player 3" textAlignment="CENTER" textFill="#f2eaea">
<font>
<Font size="36.0" />
</font>
</Button>
<Button fx:id="p4" layoutX="102.0" layoutY="344.0" mnemonicParsing="false" onAction="#seti" opacity="0.6" prefHeight="83.0" prefWidth="513.0" style="-fx-background-color: BLACK; -fx-border-color: BLUE;" text="Player 4" textAlignment="CENTER" textFill="#f2eaea">
<font>
<Font size="36.0" />
</font>
</Button>
<Button fx:id="p5" layoutX="102.0" layoutY="434.0" mnemonicParsing="false" onAction="#seti" opacity="0.6" prefHeight="83.0" prefWidth="513.0" style="-fx-background-color: BLACK; -fx-border-color: ORANGE;" text="Player 5" textAlignment="CENTER" textFill="#f2eaea">
<font>
<Font size="36.0" />
</font>
</Button>
<Button fx:id="p6" layoutX="101.0" layoutY="524.0" mnemonicParsing="false" onAction="#seti" opacity="0.6" prefHeight="83.0" prefWidth="513.0" style="-fx-background-color: BLACK; -fx-border-color: LIGHTBLUE;" text="Player 6" textAlignment="CENTER" textFill="#f2eaea">
<font>
<Font size="36.0" />
</font>
</Button>
<Button fx:id="p7" layoutX="100.0" layoutY="612.0" mnemonicParsing="false" onAction="#seti" opacity="0.6" prefHeight="83.0" prefWidth="513.0" style="-fx-background-color: BLACK; -fx-border-color: YELLOW;" text="Player 7" textAlignment="CENTER" textFill="#f2eaea">
<font>
<Font size="36.0" />
</font>
</Button>
<Label layoutX="143.0" layoutY="3.0" prefHeight="61.0" prefWidth="432.0" text="Player's Settings" textAlignment="CENTER" textFill="#ebe4e4">
<font>
<Font size="50.0" />
</font>
</Label>
<Button fx:id="p8" layoutX="101.0" layoutY="701.0" mnemonicParsing="false" onAction="#seti" opacity="0.6" prefHeight="83.0" prefWidth="513.0" style="-fx-background-color: BLACK; -fx-border-color: AQUA;" text="Player 8" textAlignment="CENTER" textFill="#f2eaea">
<font>
<Font size="36.0" />
</font>
</Button>
</children></AnchorPane>
</children>
</StackPane>