Created
September 26, 2018 14:39
-
-
Save greyscaled/ed7d695c87e59e8691b238b0f63be19c to your computer and use it in GitHub Desktop.
FXML Template for SlotMachine.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<?import java.lang.*?> | |
<?import java.net.*?> | |
<?import java.util.*?> | |
<?import javafx.scene.*?> | |
<?import javafx.scene.control.*?> | |
<?import javafx.scene.layout.*?> | |
<?import javafx.scene.text.Text?> | |
<AnchorPane | |
xmlns:fx="http://javafx.com/fxml/1"> | |
<stylesheets> | |
<URL value="@slotmachinetab.css"/> | |
</stylesheets> | |
<children> | |
<Label | |
AnchorPane.topAnchor="8.0" | |
AnchorPane.leftAnchor="8.0" | |
text="Selected Route:"> | |
</Label> | |
<Text | |
fx:id="txtSelectedRoute" | |
AnchorPane.topAnchor="8.0" | |
AnchorPane.leftAnchor="120.0" | |
text="NONE"> | |
</Text> | |
<Button | |
fx:id="btnRoute1" | |
AnchorPane.topAnchor="40.0" | |
AnchorPane.leftAnchor="8.0" | |
text="Route 1"> | |
</Button> | |
<Button | |
fx:id="btnRoute2" | |
AnchorPane.topAnchor="40.0" | |
AnchorPane.leftAnchor="100.0" | |
text="Route 2"> | |
</Button> | |
</children> | |
</AnchorPane> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment