Skip to content
Snippets Groups Projects
staffManagerSidePanel.fxml 1.28 KiB
Newer Older
Mitch Cumpstone (cmc408)'s avatar
Mitch Cumpstone (cmc408) committed
<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Button?>
<?import javafx.scene.layout.VBox?>

<VBox minHeight="-Infinity" minWidth="-Infinity" prefHeight="540.0" prefWidth="100.0" xmlns="http://javafx.com/javafx/17" xmlns:fx="http://javafx.com/fxml/1" >
Mitch Cumpstone (cmc408)'s avatar
Mitch Cumpstone (cmc408) committed
   <children>
Mitch Cumpstone (cmc408)'s avatar
Mitch Cumpstone (cmc408) committed
      <Button maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" mnemonicParsing="false" onMouseClicked="#staffManagerClicked" prefHeight="135.0" prefWidth="100.0" text="Add Employee" textAlignment="CENTER" wrapText="true" />
      <Button maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" mnemonicParsing="false" onMouseClicked="#viewEditEmployee" prefHeight="135.0" prefWidth="100.0" text="Edit Employee" textAlignment="CENTER" wrapText="true" />
      <Button alignment="CENTER" contentDisplay="CENTER" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" mnemonicParsing="false" onMouseClicked="#removeStaffSidePanelClicked" prefHeight="135.0" prefWidth="100.0" text="Remove Employee" textAlignment="CENTER" wrapText="true" />
      <Button maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" mnemonicParsing="false" onMouseClicked="#viewStaff" prefHeight="135.0" prefWidth="100.0" text="View Employees" textAlignment="CENTER" wrapText="true" />
Mitch Cumpstone (cmc408)'s avatar
Mitch Cumpstone (cmc408) committed
   </children>
</VBox>