-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUSER MENU.fxml
38 lines (36 loc) · 1.53 KB
/
USER MENU.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
35
36
37
38
<?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_usermenu" 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>
<Button onAction="#order_product" alignment="CENTER" layoutX="211.0" layoutY="308.0" mnemonicParsing="false" text="ORDER A PRODUCT">
<font>
<Font size="17.0" />
</font>
</Button>
<Button onAction="#check_stock" alignment="CENTER" layoutX="234.0" layoutY="235.0" mnemonicParsing="false" text="CHECK STOCK">
<font>
<Font size="17.0" />
</font>
</Button>
<Button onAction="#exit" layoutY="362.0" mnemonicParsing="false" text="LOGOUT">
<font>
<Font size="17.0" />
</font>
</Button>
<Text layoutX="247.0" layoutY="205.0" strokeType="OUTSIDE" strokeWidth="0.0" text="HELLO USER">
<font>
<Font name="Microsoft Tai Le" size="19.0" />
</font>
</Text>
<ImageView fitHeight="119.0" fitWidth="284.0" layoutX="181.0" layoutY="37.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="logo.png" />
</image>
</ImageView>
</children>
</Pane>