Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.75 KB | None | 0 0
  1. <AnchorPane prefHeight="519.0" prefWidth="959.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="UWE.MainViewController">
  2.     <children>
  3.         <TableView fx:id="MainView" prefHeight="350.0" prefWidth="959.0">
  4.             <columns>
  5.                 <TableColumn fx:id="hallNumberCol" minWidth="120.0" prefWidth="75.0" text="Hall No." />
  6.                 <TableColumn fx:id="roomNumberCol" minWidth="120.0" prefWidth="75.0" text="Room No." />
  7.             <TableColumn fx:id="forenameCol" minWidth="120.0" prefWidth="75.0" text="Forename" />
  8.                 <TableColumn fx:id="surnameCol" minWidth="120.0" prefWidth="75.0" text="Surname" />
  9.                 <TableColumn fx:id="studentNumCol" minWidth="120.0" prefWidth="75.0" text="Student ID" />
  10.                 <TableColumn fx:id="leaseNumberCol" minWidth="120.0" prefWidth="75.0" text="Lease Number" />
  11.                 <TableColumn fx:id="cleaningStatusCol" minWidth="120.0" prefWidth="75.0" text="Cleaning Status" />
  12.                 <TableColumn fx:id="roomStatusCol" minWidth="120.0" prefWidth="75.0" text="Room Status" />
  13.             </columns>
  14.         </TableView>
  15.         <ChoiceBox fx:id="cleaningStatusBox" layoutX="436.0" layoutY="419.0" prefHeight="27.0" prefWidth="161.0" />
  16.         <Button layoutX="814.0" layoutY="462.0" mnemonicParsing="false" onAction="#logOut" prefHeight="35.0" prefWidth="108.0" text="Logout" />
  17.         <TextField fx:id="hallNumberBox" editable="false" layoutX="17.0" layoutY="375.0" prefHeight="27.0" prefWidth="192.0">
  18.          <cursor>
  19.             <Cursor fx:constant="DISAPPEAR" />
  20.          </cursor></TextField>
  21.         <Label layoutX="17.0" layoutY="358.0" text="Hall No." />
  22.         <TextField fx:id="roomNumberBox" editable="false" layoutX="226.0" layoutY="375.0" prefHeight="27.0" prefWidth="192.0">
  23.          <cursor>
  24.             <Cursor fx:constant="DISAPPEAR" />
  25.          </cursor></TextField>
  26.         <Label layoutX="227.0" layoutY="358.0" text="Room No." />
  27.         <TextField fx:id="studentIdBox" layoutX="436.0" layoutY="466.0" prefHeight="27.0" prefWidth="192.0" />
  28.         <Label layoutX="435.0" layoutY="449.0" text="Student ID" />
  29.         <TextField fx:id="forenameBox" layoutX="17.0" layoutY="466.0" prefHeight="27.0" prefWidth="192.0" />
  30.         <Label layoutX="18.0" layoutY="449.0" text="Student Forename" />
  31.         <TextField fx:id="leaseNumberBox" layoutX="17.0" layoutY="419.0" prefHeight="27.0" prefWidth="192.0" />
  32.         <Label layoutX="17.0" layoutY="402.0" text="Lease Number" />
  33.         <TextField fx:id="roomStatusBox" editable="false" layoutX="226.0" layoutY="419.0" prefHeight="27.0" prefWidth="192.0" />
  34.         <Label layoutX="227.0" layoutY="402.0" text="Room Status" />
  35.         <Label layoutX="435.0" layoutY="402.0" text="Cleaning Status" />
  36.         <Button layoutX="667.0" layoutY="415.0" mnemonicParsing="false" onAction="#update" prefHeight="35.0" prefWidth="108.0" text="Update" />
  37.         <TextField layoutX="434.0" layoutY="375.0" prefHeight="27.0" prefWidth="192.0" />
  38.         <Label layoutX="435.0" layoutY="358.0" text="Available date" />
  39.         <Button layoutX="667.0" layoutY="462.0" mnemonicParsing="false" prefHeight="35.0" prefWidth="108.0" text="Create" />
  40.       <TextField fx:id="searchBox" layoutX="667.0" layoutY="375.0" onAction="#searchRecord" onKeyTyped="#searchRecord" prefHeight="27.0" prefWidth="255.0" />
  41.       <Label layoutX="667.0" layoutY="358.0" text="Search" />
  42.       <TextField fx:id="surnameBox" layoutX="226.0" layoutY="466.0" prefHeight="27.0" prefWidth="192.0" />
  43.       <Label layoutX="226.0" layoutY="449.0" text="Student Surname" />
  44.       <Button layoutX="814.0" layoutY="415.0" mnemonicParsing="false" prefHeight="35.0" prefWidth="108.0" text="Delete" />
  45.     </children>
  46. </AnchorPane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement