Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <?import javafx.geometry.Insets?>
  4. <?import javafx.scene.control.Button?>
  5. <?import javafx.scene.control.Label?>
  6. <?import javafx.scene.layout.ColumnConstraints?>
  7. <?import javafx.scene.layout.GridPane?>
  8. <?import javafx.scene.layout.HBox?>
  9. <?import javafx.scene.layout.RowConstraints?>
  10. <?import javafx.scene.layout.VBox?>
  11. <?import javafx.scene.text.Font?>
  12.  
  13. <VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" spacing="20.0" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1" fx:controller="pruebaventanas.VentanaEntradaController">
  14. <children>
  15. <Label text="Imprimir entradas">
  16. <font>
  17. <Font size="22.0" />
  18. </font>
  19. </Label>
  20. <GridPane fx:id="entrada" maxHeight="200.0" maxWidth="550.0" style="-fx-background-color: white; -fx-border-color: black;">
  21. <columnConstraints>
  22. <ColumnConstraints hgrow="SOMETIMES" maxWidth="295.0" minWidth="10.0" prefWidth="69.0" />
  23. <ColumnConstraints hgrow="SOMETIMES" maxWidth="447.0" minWidth="10.0" prefWidth="235.0" />
  24. <ColumnConstraints hgrow="SOMETIMES" maxWidth="329.0" minWidth="10.0" prefWidth="289.0" />
  25. </columnConstraints>
  26. <rowConstraints>
  27. <RowConstraints maxHeight="60.0" minHeight="10.0" prefHeight="29.0" vgrow="SOMETIMES" />
  28. <RowConstraints maxHeight="32.0" minHeight="0.0" prefHeight="31.0" vgrow="SOMETIMES" />
  29. <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  30. <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  31. <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  32. </rowConstraints>
  33. <children>
  34. <Label fx:id="nombrePelicula" text="Label" GridPane.columnIndex="1" />
  35. <Label fx:id="diaPelicula" text="Label" GridPane.columnIndex="1" GridPane.rowIndex="1" />
  36. <Label fx:id="nombreSala" text="Label" GridPane.columnIndex="1" GridPane.rowIndex="2" />
  37. <Label fx:id="horaPelicula" text="Label" GridPane.columnIndex="1" GridPane.rowIndex="3" />
  38. <Label fx:id="numAsientos" text="Label" GridPane.columnIndex="1" GridPane.rowIndex="4" />
  39. <Label fx:id="precioEntrada" text="Label" GridPane.columnIndex="2" />
  40. </children>
  41. <opaqueInsets>
  42. <Insets />
  43. </opaqueInsets>
  44. </GridPane>
  45. <HBox prefHeight="100.0" prefWidth="200.0" spacing="20.0">
  46. <children>
  47. <Button fx:id="botonImprimir" mnemonicParsing="false" onAction="#imprimir" text="Imprimir entradas" />
  48. <Button fx:id="botonSeleccionar" mnemonicParsing="false" onAction="#seleccionarImpresora" text="Seleccionar impresora" />
  49. </children>
  50. </HBox>
  51. </children>
  52. <padding>
  53. <Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
  54. </padding>
  55. </VBox>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement