Advertisement
Guest User

verFaltas

a guest
Jun 19th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import com.jfoenix.controls.JFXButton?>
  4. <?import de.jensd.fx.glyphs.fontawesome.FontAwesomeIconView?>
  5. <?import javafx.scene.control.Label?>
  6. <?import javafx.scene.control.ListView?>
  7. <?import javafx.scene.image.Image?>
  8. <?import javafx.scene.image.ImageView?>
  9. <?import javafx.scene.layout.Pane?>
  10. <?import javafx.scene.shape.Line?>
  11. <?import javafx.scene.shape.Rectangle?>
  12. <?import javafx.scene.text.Font?>
  13. <?import javafx.scene.text.Text?>
  14.  
  15. <Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="700.0" prefWidth="1000.0" style="-fx-background-color: white;" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1">
  16. <children>
  17. <Rectangle arcHeight="5.0" arcWidth="5.0" fill="#24b521" height="106.0" stroke="#24b521" strokeType="INSIDE" width="1000.0" />
  18. <Rectangle arcHeight="5.0" arcWidth="5.0" fill="#f2f2f2" height="395.0" layoutX="237.0" layoutY="222.0" stroke="#cdcdcd" strokeType="INSIDE" width="580.0" />
  19. <ImageView layoutX="30.0" layoutY="21.0">
  20. <image>
  21. <Image url="@../Fotos/Logo.png" />
  22. </image>
  23. </ImageView>
  24. <Line endX="894.0" layoutX="106.0" layoutY="106.0" startX="-122.5" stroke="#615c5c" />
  25. <Label layoutX="182.0" layoutY="141.0" prefHeight="34.0" prefWidth="225.0" text="Ver Faltas">
  26. <font>
  27. <Font name="System Bold" size="23.0" />
  28. </font>
  29. </Label>
  30. <JFXButton fx:id="btnRetroceder" buttonType="RAISED" layoutX="261.0" layoutY="42.0" prefHeight="25.0" prefWidth="25.0" ripplerFill="#21c226" style="-fx-background-color: #21c226; -fx-background-radius: 500;" text=" " textFill="WHITE">
  31. <font>
  32. <Font name="System Bold" size="12.0" />
  33. </font>
  34. </JFXButton>
  35. <FontAwesomeIconView fx:id="iconRetroceder" fill="WHITE" glyphName="ARROW_LEFT" layoutX="266.0" layoutY="60.0" size="16" wrappingWidth="10.0" />
  36. <JFXButton fx:id="btnLogout1" buttonType="RAISED" layoutX="878.0" layoutY="1.0" prefHeight="102.0" prefWidth="141.0" ripplerFill="WHITE" text="Logout" textFill="#2eda31">
  37. <font>
  38. <Font name="System Bold" size="12.0" />
  39. </font>
  40. </JFXButton>
  41. <Rectangle arcHeight="5.0" arcWidth="5.0" fill="#21c226" height="108.0" layoutX="878.0" layoutY="-2.0" stroke="#a2aed0" strokeType="INSIDE" width="10.0" />
  42. <Text layoutX="869.0" layoutY="682.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Nº de Processo:" />
  43. <Text fx:id="numProcesso" layoutX="961.0" layoutY="682.0" strokeType="OUTSIDE" strokeWidth="0.0" text=" " wrappingWidth="10.287109375" />
  44. <ListView fx:id="id_listView" layoutX="325.0" layoutY="265.0" prefHeight="310.0" prefWidth="409.0" />
  45. </children>
  46. </Pane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement