forked from 101josh10/Radiology-Information-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBilling.fxml
53 lines (51 loc) · 2.57 KB
/
Billing.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
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.Tab?>
<?import javafx.scene.control.TabPane?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<TabPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" tabClosingPolicy="UNAVAILABLE" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/9.0.1">
<tabs>
<Tab text="Billing Information">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
<children>
<TableView prefHeight="323.0" prefWidth="600.0">
<columns>
<TableColumn prefWidth="75.0" text="Patient ID" />
<TableColumn prefWidth="75.0" text="Order ID" />
<TableColumn prefWidth="103.33334350585938" text="Procedure Date" />
<TableColumn prefWidth="103.33331298828125" text="Procedure Cost" />
<TableColumn prefWidth="86.0" text="Adjustments" />
</columns>
</TableView>
<Button layoutX="465.0" layoutY="331.0" mnemonicParsing="false" text="Update Information" />
<TextField layoutX="108.0" layoutY="331.0" prefHeight="25.0" prefWidth="79.0" promptText="\$" />
<TextField layoutX="294.0" layoutY="331.0" prefHeight="25.0" prefWidth="82.0" />
<Label layoutX="60.0" layoutY="334.0" prefHeight="20.0" prefWidth="39.0" text="Cost:" textAlignment="CENTER">
<font>
<Font size="14.0" />
</font>
</Label>
<Label layoutX="212.0" layoutY="334.0" prefHeight="20.0" prefWidth="82.0" text="Adjustment:" textAlignment="CENTER">
<font>
<Font size="14.0" />
</font>
</Label>
</children></AnchorPane>
</content>
</Tab>
<Tab text="x">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
<children>
<Button layoutX="523.0" layoutY="323.0" mnemonicParsing="false" text="Update" />
</children></AnchorPane>
</content>
</Tab>
</tabs>
</TabPane>