blob: c9ac27cca602e5f6e9515d0da6e3e14322541521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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>
|