-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSecretaryMenu.fxml
More file actions
23 lines (21 loc) · 1.12 KB
/
SecretaryMenu.fxml
File metadata and controls
23 lines (21 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane prefHeight="251.0" prefWidth="394.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="healthcareLook.SecretaryMenuController">
<children>
<ScrollPane prefHeight="251.0" prefWidth="400.0">
<content>
<AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="200.0" prefWidth="200.0" />
</content>
</ScrollPane>
<Pane prefHeight="251.0" prefWidth="400.0">
<children>
<Label alignment="CENTER" layoutX="85.0" layoutY="14.0" prefHeight="44.0" prefWidth="214.0" text="Receptionist Window" />
<Button fx:id="patient" layoutX="27.0" layoutY="126.0" mnemonicParsing="false" prefHeight="62.0" prefWidth="116.0" text="Add Patient" />
<Button fx:id="appointment" layoutX="200.0" layoutY="126.0" mnemonicParsing="false" prefHeight="62.0" prefWidth="116.0" text="Add Appointment" />
</children>
</Pane>
</children>
</AnchorPane>