-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoctorCancel.fxml
34 lines (32 loc) · 1.59 KB
/
DoctorCancel.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
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.text.*?>
<?import java.lang.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane prefHeight="400.0" prefWidth="419.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="healthcareLook.DoctorCancelWindowController">
<children>
<ScrollPane prefHeight="400.0" prefWidth="427.0">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="200.0" prefWidth="200.0" />
</content>
</ScrollPane>
<Pane prefHeight="400.0" prefWidth="427.0">
<children>
<Label alignment="CENTER" layoutX="110.0" layoutY="14.0" prefHeight="52.0" prefWidth="230.0" text="No Show Window">
<font>
<Font name="Times New Roman Bold" size="20.0" />
</font>
</Label>
<Button fx:id="submit" layoutX="189.0" layoutY="314.0" mnemonicParsing="false" prefHeight="52.0" prefWidth="97.0" text="Submit" />
<Button fx:id="cancel" layoutX="304.0" layoutY="314.0" mnemonicParsing="false" prefHeight="52.0" prefWidth="97.0" text="Cancel" />
<ListView fx:id="list" layoutX="122.0" layoutY="66.0" prefHeight="200.0" prefWidth="230.0" />
<Label layoutX="14.0" layoutY="66.0" prefHeight="32.0" prefWidth="108.0" text="Appointments">
<font>
<Font name="Times New Roman Bold" size="15.0" />
</font>
</Label>
</children>
</Pane>
</children>
</AnchorPane>