Advertisement
Guest User

CodeView

a guest
Jan 22nd, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.scene.control.Button?>
  4. <?import javafx.scene.control.TextField?>
  5. <?import javafx.scene.layout.AnchorPane?>
  6. <?import javafx.scene.layout.Pane?>
  7.  
  8. <Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="720.0" prefWidth="1080.0" style="-fx-background-color: lightgrey;" xmlns="http://javafx.com/javafx/8.0.172-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="app.controllers.HomeController">
  9. <AnchorPane fx:id="rectStatusLogin" minHeight="0.0" minWidth="0.0" prefHeight="720.0" prefWidth="99.0">
  10. <children>
  11. <fx:include source="MenuView.fxml" />
  12.  
  13. </children>
  14. </AnchorPane>
  15. <TextField fx:id="txtUser" alignment="CENTER" layoutX="966.0" layoutY="14.0" prefHeight="25.0" prefWidth="100.0" promptText="User" text="Fabriek3" />
  16. <TextField fx:id="txtPass" alignment="CENTER" layoutX="966.0" layoutY="44.0" prefHeight="25.0" prefWidth="100.0" promptText="Pass" text="Fabriek3" />
  17. <Button fx:id="btnLogin" layoutX="989.0" layoutY="74.0" mnemonicParsing="false" onMouseClicked="#LoginAction" prefHeight="25.0" prefWidth="55.0" text="Login" />
  18. <TextField alignment="CENTER" editable="false" layoutX="310.0" layoutY="150.0" prefHeight="25.0" prefWidth="70.0" style="-fx-background-color: lightgrey;" text="Factory 1" />
  19. <TextField alignment="CENTER" editable="false" layoutX="710.0" layoutY="150.0" prefHeight="25.0" prefWidth="70.0" style="-fx-background-color: lightgrey;" text="Factory 3" />
  20. <TextField alignment="CENTER" editable="false" layoutX="510.0" layoutY="150.0" prefHeight="25.0" prefWidth="70.0" style="-fx-background-color: lightgrey;" text="Factory 2" />
  21. <TextField fx:id="txtLastTimeConnected1" alignment="CENTER" editable="false" layoutX="270.0" layoutY="201.0" prefHeight="25.0" prefWidth="150.0" style="-fx-background-color: lightgrey;" text="Last Time Connected:" />
  22. <TextField fx:id="txtLastTimeConnected2" alignment="CENTER" editable="false" layoutX="470.0" layoutY="201.0" prefHeight="25.0" prefWidth="150.0" style="-fx-background-color: lightgrey;" text="Last Time Connected:" />
  23. <TextField fx:id="txtLastTimeConnected3" alignment="CENTER" editable="false" layoutX="670.0" layoutY="201.0" prefHeight="25.0" prefWidth="150.0" style="-fx-background-color: lightgrey;" text="Last Time Connected:" />
  24. <TextField fx:id="txtStatus1" alignment="CENTER" editable="false" layoutX="283.0" layoutY="250.0" prefHeight="25.0" prefWidth="125.0" style="-fx-background-color: lightgrey;" text="Status:" />
  25. <TextField fx:id="txtStatus2" alignment="CENTER" editable="false" layoutX="483.0" layoutY="250.0" prefHeight="25.0" prefWidth="125.0" style="-fx-background-color: lightgrey;" text="Status:" />
  26. <TextField fx:id="txtStatus3" alignment="CENTER" editable="false" layoutX="683.0" layoutY="250.0" prefHeight="25.0" prefWidth="125.0" style="-fx-background-color: lightgrey;" text="Status:" />
  27. <TextField fx:id="txtError1" alignment="CENTER" editable="false" layoutX="245.0" layoutY="400.0" prefHeight="200.0" prefWidth="200.0" promptText="Error message" style="-fx-background-color: lightgrey;" />
  28. <TextField fx:id="txtError2" alignment="CENTER" editable="false" layoutX="445.0" layoutY="400.0" prefHeight="200.0" prefWidth="200.0" promptText="Error message" style="-fx-background-color: lightgrey;" />
  29. <TextField fx:id="txtError3" alignment="CENTER" editable="false" layoutX="645.0" layoutY="400.0" prefHeight="200.0" prefWidth="200.0" promptText="Error message" style="-fx-background-color: lightgrey;" />
  30. <TextField fx:id="txtTotalUnitsProduced1" alignment="CENTER" editable="false" layoutX="270.0" layoutY="300.0" prefHeight="25.0" prefWidth="150.0" style="-fx-background-color: lightgrey;" text="Total Units Produced:" />
  31. <TextField fx:id="txtTotalUnitsProduced2" alignment="CENTER" editable="false" layoutX="470.0" layoutY="300.0" prefHeight="25.0" prefWidth="150.0" style="-fx-background-color: lightgrey;" text="Total Units Produced:" />
  32. <TextField fx:id="txtTotalUnitsProduced3" alignment="CENTER" editable="false" layoutX="670.0" layoutY="300.0" prefHeight="25.0" prefWidth="150.0" style="-fx-background-color: lightgrey;" text="Total Units Produced:" />
  33. <Button fx:id="btnStart" disable="true" layoutX="991.0" layoutY="657.0" mnemonicParsing="false" onAction="#FabriekAan" onMouseClicked="#StartFabriek" text="Start" />
  34. </Pane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement