Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import com.jfoenix.controls.JFXButton?>
  4. <?import javafx.geometry.Insets?>
  5. <?import javafx.scene.control.Label?>
  6. <?import javafx.scene.control.ScrollBar?>
  7. <?import javafx.scene.control.ScrollPane?>
  8. <?import javafx.scene.control.TextField?>
  9. <?import javafx.scene.effect.ColorAdjust?>
  10. <?import javafx.scene.layout.AnchorPane?>
  11. <?import javafx.scene.layout.VBox?>
  12. <?import javafx.scene.paint.LinearGradient?>
  13. <?import javafx.scene.paint.Stop?>
  14.  
  15. <AnchorPane xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="org.weebreader.UI.Controladores.ControllerVistaManga">
  16. <children>
  17. <AnchorPane layoutX="-3.0" layoutY="4.0" prefHeight="460.0" prefWidth="680.0">
  18. <children>
  19. <VBox layoutY="-4.0" prefHeight="471.0" prefWidth="127.0" style="-fx-background-color: #ABAEAD;">
  20. <children>
  21. <Label fx:id="txtinformacion" prefHeight="68.0" prefWidth="110.0" wrapText="true">
  22. <VBox.margin>
  23. <Insets left="17.0" />
  24. </VBox.margin>
  25. </Label>
  26. <JFXButton buttonType="RAISED" onAction="#goMangasFavoritos" prefHeight="43.0" prefWidth="127.0" style="-fx-background-color: #f0f0f0;" text="Favoritos">
  27. <ripplerFill>
  28. <LinearGradient endX="0.6428571428571428" endY="0.8714285714285714" startX="1.0" startY="0.04285714285714286">
  29. <stops>
  30. <Stop color="#141412" />
  31. <Stop color="#a7b089" offset="1.0" />
  32. </stops>
  33. </LinearGradient>
  34. </ripplerFill>
  35. <effect>
  36. <ColorAdjust brightness="-1.0" contrast="1.0" hue="1.0" saturation="1.0" />
  37. </effect>
  38. </JFXButton>
  39. <JFXButton buttonType="RAISED" onAction="#goMangasPropios" prefHeight="43.0" prefWidth="127.0" style="-fx-background-color: #f0f0f0;" text="Mangas Propios">
  40. <ripplerFill>
  41. <LinearGradient endX="0.6428571428571428" endY="0.8714285714285714" startX="1.0" startY="0.04285714285714286">
  42. <stops>
  43. <Stop color="#141412" />
  44. <Stop color="#333431" offset="1.0" />
  45. </stops>
  46. </LinearGradient>
  47. </ripplerFill>
  48. <effect>
  49. <ColorAdjust brightness="-1.0" contrast="1.0" hue="1.0" saturation="1.0" />
  50. </effect>
  51. <VBox.margin>
  52. <Insets top="30.0" />
  53. </VBox.margin>
  54. </JFXButton>
  55. </children>
  56. </VBox>
  57. <ScrollPane layoutX="126.0" prefHeight="467.0" prefWidth="574.0">
  58. <content>
  59. <AnchorPane prefHeight="916.0" prefWidth="593.0">
  60. <children>
  61. <ScrollBar layoutX="179.0" layoutY="50.0" orientation="VERTICAL" AnchorPane.bottomAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
  62. <TextField layoutX="28.0" layoutY="14.0" promptText="Busqueda" />
  63. <JFXButton buttonType="RAISED" layoutX="203.0" layoutY="14.0" text="Buscar" textOverrun="CENTER_ELLIPSIS">
  64. <ripplerFill>
  65. <LinearGradient endX="1.0" endY="1.0">
  66. <stops>
  67. <Stop color="#141412" />
  68. <Stop color="WHITE" offset="1.0" />
  69. </stops>
  70. </LinearGradient>
  71. </ripplerFill>
  72. </JFXButton>
  73. </children>
  74. </AnchorPane>
  75. </content>
  76. </ScrollPane>
  77. </children></AnchorPane>
  78. </children>
  79. </AnchorPane>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement