-
Notifications
You must be signed in to change notification settings - Fork 0
/
ORDER SUKSES.fxml
34 lines (31 loc) · 1.37 KB
/
ORDER SUKSES.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
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.Pane?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<Pane fx:controller="controller_placeordersukses" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
<children>
<Text layoutX="79.0" layoutY="263.0" strokeType="OUTSIDE" strokeWidth="0.0" text="THANK YOU FOR YOUR ORDER !!">
<font>
<Font size="30.0" />
</font>
</Text>
<ImageView fitHeight="174.0" fitWidth="307.0" layoutX="147.0" layoutY="56.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="logo.png" />
</image>
</ImageView>
<Button onAction="#back" layoutX="207.0" layoutY="348.0" mnemonicParsing="false" prefHeight="31.0" prefWidth="187.0" text="BACK TO MENU">
<font>
<Font size="17.0" />
</font>
</Button>
<Text layoutX="102.0" layoutY="312.0" strokeType="OUTSIDE" strokeWidth="0.0" text="YOUR ORDER HAS BEEN PLACED IN OUR SYSTEM">
<font>
<Font size="18.0" />
</font>
</Text>
</children>
</Pane>