-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSavedGamePage.fxml
30 lines (28 loc) · 1.43 KB
/
SavedGamePage.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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane fx:id="AnchorPaneMain" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.SavedGamePage">
<children>
<SplitPane dividerPositions="0.5" orientation="VERTICAL" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
<items>
<MenuBar>
<menus>
<Menu mnemonicParsing="false" text="File">
<items>
<MenuItem fx:id="BackToMainMenu" mnemonicParsing="false" onAction="#BackToMainMenu" text="Back to Main Menu" />
<MenuItem fx:id="Exit" mnemonicParsing="false" onAction="#ExitTheGame" text="Exit" />
</items>
</Menu>
</menus>
</MenuBar>
<TableView fx:id="Table" editable="true" prefHeight="200.0" prefWidth="200.0">
<columns>
<TableColumn fx:id="Column1" minWidth="200.0" prefWidth="400.0" text="Game" />
<TableColumn fx:id="Column2" prefWidth="100.0" text="High Score" />
<TableColumn fx:id="Column3" prefWidth="100.0" text="Load" />
</columns>
</TableView>
</items>
</SplitPane>
</children>
</AnchorPane>