-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcapacity.fxml
44 lines (42 loc) · 1.91 KB
/
capacity.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.control.TextField?>
<?import javafx.scene.effect.DropShadow?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.paint.Color?>
<?import javafx.scene.text.Font?>
<?import javafx.scene.text.Text?>
<AnchorPane prefHeight="315.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="project">
<children>
<ImageView fitHeight="404.0" fitWidth="600.0" layoutX="-1.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@img.png" />
</image>
</ImageView>
<TextField fx:id="pharmacy_counter" layoutX="269.0" layoutY="159.0" promptText="capcity" />
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Text" />
<Text fill="WHITE" fontSmoothingType="LCD" layoutX="183.0" layoutY="133.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Enter the capcity of our pharmacy:" textAlignment="CENTER" textOrigin="BOTTOM" wrappingWidth="230.13671875" AnchorPane.rightAnchor="186.86328125">
<font>
<Font name="Georgia Bold" size="18.0" />
</font>
<effect>
<DropShadow />
</effect>
</Text>
<Button fx:id="c2" layoutX="223.0" layoutY="210.0" mnemonicParsing="false" onAction="#home_window" text="Now let's start the system">
<effect>
<DropShadow />
</effect></Button>
<Button layoutX="197.0" layoutY="159.0" mnemonicParsing="false" onAction="#set_cap" text="ENTER">
<effect>
<DropShadow>
<color>
<Color red="0.09473684430122375" green="0.09263157844543457" blue="0.09263157844543457" />
</color>
</DropShadow>
</effect>
</Button>
</children>
</AnchorPane>