Aplikasi POS Amigo, dibangun dengan JavaFX dengan Maven
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

77 řádky
4.2 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?import javafx.geometry.Insets?>
  3. <?import javafx.scene.control.ComboBox?>
  4. <?import javafx.scene.control.Label?>
  5. <?import javafx.scene.control.Separator?>
  6. <?import javafx.scene.control.TextField?>
  7. <?import javafx.scene.layout.AnchorPane?>
  8. <?import javafx.scene.layout.ColumnConstraints?>
  9. <?import javafx.scene.layout.GridPane?>
  10. <?import javafx.scene.layout.HBox?>
  11. <?import javafx.scene.layout.RowConstraints?>
  12. <AnchorPane id="AnchorPane" prefWidth="478.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="id.amigogroup.posterminal.bayar.FormBayarKartuController">
  13. <children>
  14. <Separator layoutX="30.0" layoutY="13.0" prefWidth="200.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="5.0" />
  15. <GridPane layoutX="14.0" layoutY="22.0" AnchorPane.bottomAnchor="22.0" AnchorPane.leftAnchor="14.0" AnchorPane.rightAnchor="14.0" AnchorPane.topAnchor="22.0">
  16. <columnConstraints>
  17. <ColumnConstraints hgrow="SOMETIMES" maxWidth="100.0" minWidth="10.0" prefWidth="100.0" />
  18. <ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308" minWidth="10.0" prefWidth="150.0" />
  19. <ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308" minWidth="10.0" prefWidth="148.0" />
  20. <ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308" minWidth="10.0" prefWidth="52.0" />
  21. </columnConstraints>
  22. <rowConstraints>
  23. <RowConstraints minHeight="10.0" vgrow="SOMETIMES" />
  24. <RowConstraints minHeight="10.0" vgrow="SOMETIMES" />
  25. <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  26. <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
  27. </rowConstraints>
  28. <children>
  29. <Label text="Nama Bank">
  30. <GridPane.margin>
  31. <Insets bottom="2.5" />
  32. </GridPane.margin>
  33. </Label>
  34. <ComboBox fx:id="cbxNamaBank" maxWidth="1.7976931348623157E308" GridPane.columnIndex="1">
  35. <GridPane.margin>
  36. <Insets bottom="2.5" left="5.0" right="2.5" top="2.5" />
  37. </GridPane.margin>
  38. </ComboBox>
  39. <Label text="Nomor Kartu" GridPane.rowIndex="1">
  40. <GridPane.margin>
  41. <Insets bottom="2.5" top="2.5" />
  42. </GridPane.margin>
  43. </Label>
  44. <HBox spacing="5.0" GridPane.columnIndex="1" GridPane.columnSpan="2" GridPane.rowIndex="1">
  45. <GridPane.margin>
  46. <Insets bottom="2.5" left="5.0" right="2.5" top="2.5" />
  47. </GridPane.margin>
  48. <children>
  49. <TextField fx:id="fldNoKartu1" alignment="CENTER_RIGHT" onKeyTyped="#fldNomorKartuOnKeyTyped" prefWidth="75.0" />
  50. <TextField fx:id="fldNoKartu2" alignment="CENTER_RIGHT" onKeyTyped="#fldNomorKartuOnKeyTyped" prefWidth="75.0" />
  51. <TextField fx:id="fldNoKartu3" alignment="CENTER_RIGHT" onKeyTyped="#fldNomorKartuOnKeyTyped" prefWidth="75.0" />
  52. <TextField fx:id="fldNoKartu4" alignment="CENTER_RIGHT" onKeyTyped="#fldNomorKartuOnKeyTyped" prefWidth="75.0" />
  53. </children>
  54. </HBox>
  55. <Label text="Nomor Validasi" GridPane.rowIndex="2">
  56. <GridPane.margin>
  57. <Insets bottom="2.5" top="2.5" />
  58. </GridPane.margin>
  59. </Label>
  60. <TextField alignment="CENTER_RIGHT" GridPane.columnIndex="1" GridPane.rowIndex="2">
  61. <GridPane.margin>
  62. <Insets left="5.0" right="2.5" top="2.5" />
  63. </GridPane.margin>
  64. </TextField>
  65. <Label text="Bayar" GridPane.rowIndex="3" />
  66. <TextField fx:id="fldBayar" onKeyReleased="#fldBayarOnKeyReleased" prefHeight="25.0" prefWidth="203.0" GridPane.columnIndex="1" GridPane.rowIndex="3">
  67. <GridPane.margin>
  68. <Insets left="5.0" right="2.5" top="2.5" />
  69. </GridPane.margin>
  70. </TextField>
  71. </children>
  72. </GridPane>
  73. </children>
  74. </AnchorPane>