diff options
Diffstat (limited to 'src/main/resources/com/mavlushechka/notaryqueue/helper.fxml')
-rw-r--r-- | src/main/resources/com/mavlushechka/notaryqueue/helper.fxml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/resources/com/mavlushechka/notaryqueue/helper.fxml b/src/main/resources/com/mavlushechka/notaryqueue/helper.fxml new file mode 100644 index 0000000..c9ac27c --- /dev/null +++ b/src/main/resources/com/mavlushechka/notaryqueue/helper.fxml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<?import javafx.scene.control.ListView?> +<?import javafx.scene.layout.AnchorPane?> +<?import javafx.scene.text.Text?> + +<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/18" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.mavlushechka.notaryqueue.controller.HelperController"> + <ListView fx:id="waitingClients" layoutX="15.0" layoutY="30.0" prefHeight="275.0" prefWidth="175.0" /> + <ListView fx:id="processingClients" layoutX="215.0" layoutY="30.0" prefHeight="275.0" prefWidth="175.0" /> + <ListView fx:id="readyClients" layoutX="415.0" layoutY="30.0" prefHeight="275.0" prefWidth="175.0" /> + <Text layoutX="67.0" layoutY="28.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Kutilmoqda" /> + <Text layoutX="259.0" layoutY="28.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Bajarilmoqda" /> + <Text layoutX="482.0" layoutY="28.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Tayyor" /> +</AnchorPane> |