-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathATMScene.fxml
27 lines (25 loc) · 1.37 KB
/
ATMScene.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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.PasswordField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Font?>
<VBox prefHeight="400.0" prefWidth="640.0" xmlns="http://javafx.com/javafx/9" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ATMController">
<children>
<AnchorPane maxHeight="-1.0" maxWidth="-1.0" prefHeight="-1.0" prefWidth="-1.0" VBox.vgrow="ALWAYS">
<children>
<Label alignment="CENTER" contentDisplay="CENTER" layoutX="165.0" layoutY="42.0" prefHeight="65.0" prefWidth="316.0" text="Client ATM" textAlignment="CENTER">
<font>
<Font size="16.0" />
</font>
</Label>
<PasswordField fx:id="passwordField" layoutX="238.0" layoutY="258.0" />
<ComboBox fx:id="accountPicker" layoutX="35.0" layoutY="107.0" prefHeight="26.0" prefWidth="171.0" />
<Button fx:id="submitButton" layoutX="293.0" layoutY="326.0" mnemonicParsing="false" onMouseClicked="#handleSubmitButtonOnClick" text="TARIK !!" />
<ComboBox fx:id="moneyPicker" layoutX="35.0" layoutY="158.0" prefHeight="26.0" prefWidth="171.0" />
</children>
</AnchorPane>
</children>
</VBox>