Advertisement
Nick-O-Rama

SlotMachinexml

Sep 21st, 2015
412
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.45 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.scene.text.*?>
  4. <?import javafx.scene.image.*?>
  5. <?import java.lang.*?>
  6. <?import java.util.*?>
  7. <?import javafx.scene.*?>
  8. <?import javafx.scene.control.*?>
  9. <?import javafx.scene.layout.*?>
  10.  
  11. <AnchorPane id="AnchorPane" prefHeight="200" prefWidth="320" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="slotmachine.FXMLDocumentController">
  12.     <children>
  13.         <Button fx:id="button" layoutX="126.0" layoutY="161.0" onAction="#handleButtonAction" text="Spin" />
  14.       <ImageView fx:id="left" fitHeight="73.0" fitWidth="95.0" layoutX="14.0" layoutY="14.0" pickOnBounds="true" preserveRatio="true">
  15.          <image>
  16.             <Image url="file:/C:/Users/Nicolas/Documents/_JAVA/Source%20Code/chapter%2014/Images/Fruit%20Symbols/Apple.png" />
  17.          </image>
  18.       </ImageView>
  19.       <ImageView fx:id="middle" fitHeight="73.0" fitWidth="95.0" layoutX="122.0" layoutY="14.0" pickOnBounds="true" preserveRatio="true">
  20.          <image>
  21.             <Image url="file:/C:/Users/Nicolas/Documents/_JAVA/Source%20Code/chapter%2014/Images/Fruit%20Symbols/Apple.png" />
  22.          </image>
  23.       </ImageView>
  24.       <ImageView fx:id="right" fitHeight="73.0" fitWidth="95.0" layoutX="233.0" layoutY="14.0" pickOnBounds="true" preserveRatio="true">
  25.          <image>
  26.             <Image url="file:/C:/Users/Nicolas/Documents/_JAVA/Source%20Code/chapter%2014/Images/Fruit%20Symbols/Apple.png" />
  27.          </image>
  28.       </ImageView>
  29.       <Label layoutX="14.0" layoutY="112.0" prefHeight="17.0" prefWidth="103.0" text="Amount Inserted: $" />
  30.       <TextField fx:id="textBox" layoutX="117.0" layoutY="108.0" prefHeight="25.0" prefWidth="50.0" />
  31.       <Label layoutX="195.0" layoutY="112.0" prefHeight="17.0" prefWidth="93.0" text="Amount Won This Spin: $">
  32.          <font>
  33.             <Font size="8.0" />
  34.          </font>
  35.       </Label>
  36.       <Label layoutX="209.0" layoutY="137.0" prefHeight="17.0" prefWidth="79.0" text="Total Amount Won: $">
  37.          <font>
  38.             <Font size="8.0" />
  39.          </font>
  40.       </Label>
  41.       <Label fx:id="spinWin" layoutX="288.0" layoutY="112.0" />
  42.       <Label fx:id="totalWin" layoutX="288.0" layoutY="137.0" />
  43.       <Button fx:id="button2" layoutX="25.0" layoutY="164.0" mnemonicParsing="false" onAction="#instaWin" text="Insta-Win">
  44.          <font>
  45.             <Font size="9.0" />
  46.          </font>
  47.       </Button>
  48.     </children>
  49. </AnchorPane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement