TicTacToeMainMenu.fxml (2170B) download
1<?xml version="1.0" encoding="UTF-8"?>
2
3
4<?import com.jfoenix.controls.JFXButton?>
5<?import javafx.geometry.Insets?>
6<?import javafx.scene.control.Label?>
7<?import javafx.scene.layout.AnchorPane?>
8<?import javafx.scene.layout.VBox?>
9<?import java.lang.*?>
10<AnchorPane stylesheets="@../../../css/theme.css" xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml"
11 fx:controller="nl.isygameclient.controllers.games.tictactoe.TicTacToeMainMenuController"
12 prefWidth="680" prefHeight="480">
13 <VBox alignment="CENTER" AnchorPane.rightAnchor="0" AnchorPane.leftAnchor="0" AnchorPane.bottomAnchor="0" AnchorPane.topAnchor="0">
14 <styleClass>
15 <String fx:value="surface"/>
16 </styleClass>
17 <Label text="Tic Tac Toe">
18 <styleClass>
19 <String fx:value="display-large"/>
20 <String fx:value="on-surface-text"/>
21 </styleClass>
22 <padding>
23 <Insets topRightBottomLeft="50"/>
24 </padding>
25 </Label>
26 <VBox spacing="10" alignment="CENTER" maxWidth="200">
27 <JFXButton text="Single Player" onAction="#onSinglePlayerButtonClick" prefWidth="Infinity">
28 <styleClass>
29 <String fx:value="primary"/>
30 <String fx:value="on-primary-text"/>
31 <String fx:value="title-medium"/>
32 </styleClass>
33 </JFXButton>
34 <JFXButton text="Multiplayer" onAction="#onMultiplayerButtonClick" prefWidth="Infinity">
35 <styleClass>
36 <String fx:value="primary"/>
37 <String fx:value="on-primary-text"/>
38 <String fx:value="title-medium"/>
39 </styleClass>
40 </JFXButton>
41 <JFXButton text="Exit" onAction="#onExitButtonClick" prefWidth="Infinity">
42 <styleClass>
43 <String fx:value="primary"/>
44 <String fx:value="on-primary-text"/>
45 <String fx:value="title-medium"/>
46 </styleClass>
47 </JFXButton>
48 </VBox>
49 </VBox>
50</AnchorPane>