-
Notifications
You must be signed in to change notification settings - Fork 0
/
ADMIN MENU.fxml
44 lines (41 loc) · 1.77 KB
/
ADMIN 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
39
40
41
42
43
44
<?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="controler_adminmenu" 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="#check_stock" alignment="CENTER" layoutX="90.0" layoutY="238.0" mnemonicParsing="false" text="CHECK STOCK">
<font>
<Font size="17.0" />
</font>
</Button>
<Button onAction="#check_order" alignment="CENTER" layoutX="367.0" layoutY="238.0" mnemonicParsing="false" prefHeight="38.0" prefWidth="134.0" text="CHECK ORDER">
<font>
<Font size="17.0" />
</font>
</Button>
<Button onAction="#back" layoutY="362.0" mnemonicParsing="false" text="LOGOUT">
<font>
<Font size="17.0" />
</font>
</Button>
<Button onAction="#insert_stock" alignment="CENTER" layoutX="233.0" layoutY="310.0" mnemonicParsing="false" text="INSERT STOCK">
<font>
<Font size="17.0" />
</font>
</Button>
<ImageView fitHeight="119.0" fitWidth="284.0" layoutX="172.0" layoutY="49.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="logo.png" />
</image>
</ImageView>
<Text layoutX="245.0" layoutY="206.0" strokeType="OUTSIDE" strokeWidth="0.0" text="HELLO ADMIN">
<font>
<Font name="Microsoft Tai Le" size="17.0" />
</font>
</Text>
</children>
</Pane>