Aplikasi POS Amigo, dibangun dengan JavaFX dengan Maven
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- <?xml version="1.0" encoding="UTF-8"?>
-
- <?import javafx.geometry.Insets?>
- <?import javafx.scene.control.ComboBox?>
- <?import javafx.scene.control.Label?>
- <?import javafx.scene.control.Separator?>
- <?import javafx.scene.control.TextField?>
- <?import javafx.scene.layout.AnchorPane?>
- <?import javafx.scene.layout.ColumnConstraints?>
- <?import javafx.scene.layout.GridPane?>
- <?import javafx.scene.layout.HBox?>
- <?import javafx.scene.layout.RowConstraints?>
-
- <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">
- <children>
- <Separator layoutX="30.0" layoutY="13.0" prefWidth="200.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="5.0" />
- <GridPane layoutX="14.0" layoutY="22.0" AnchorPane.bottomAnchor="22.0" AnchorPane.leftAnchor="14.0" AnchorPane.rightAnchor="14.0" AnchorPane.topAnchor="22.0">
- <columnConstraints>
- <ColumnConstraints hgrow="SOMETIMES" maxWidth="100.0" minWidth="10.0" prefWidth="100.0" />
- <ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308" minWidth="10.0" prefWidth="150.0" />
- <ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308" minWidth="10.0" prefWidth="148.0" />
- <ColumnConstraints hgrow="SOMETIMES" maxWidth="1.7976931348623157E308" minWidth="10.0" prefWidth="52.0" />
- </columnConstraints>
- <rowConstraints>
- <RowConstraints minHeight="10.0" vgrow="SOMETIMES" />
- <RowConstraints minHeight="10.0" vgrow="SOMETIMES" />
- <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
- <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
- </rowConstraints>
- <children>
- <Label text="Nama Bank">
- <GridPane.margin>
- <Insets bottom="2.5" />
- </GridPane.margin>
- </Label>
- <ComboBox fx:id="cbxNamaBank" maxWidth="1.7976931348623157E308" GridPane.columnIndex="1">
- <GridPane.margin>
- <Insets bottom="2.5" left="5.0" right="2.5" top="2.5" />
- </GridPane.margin>
- </ComboBox>
- <Label text="Nomor Kartu" GridPane.rowIndex="1">
- <GridPane.margin>
- <Insets bottom="2.5" top="2.5" />
- </GridPane.margin>
- </Label>
- <HBox spacing="5.0" GridPane.columnIndex="1" GridPane.columnSpan="2" GridPane.rowIndex="1">
- <GridPane.margin>
- <Insets bottom="2.5" left="5.0" right="2.5" top="2.5" />
- </GridPane.margin>
- <children>
- <TextField fx:id="fldNoKartu1" alignment="CENTER_RIGHT" onKeyTyped="#fldNomorKartuOnKeyTyped" prefWidth="75.0" />
- <TextField fx:id="fldNoKartu2" alignment="CENTER_RIGHT" onKeyTyped="#fldNomorKartuOnKeyTyped" prefWidth="75.0" />
- <TextField fx:id="fldNoKartu3" alignment="CENTER_RIGHT" onKeyTyped="#fldNomorKartuOnKeyTyped" prefWidth="75.0" />
- <TextField fx:id="fldNoKartu4" alignment="CENTER_RIGHT" onKeyTyped="#fldNomorKartuOnKeyTyped" prefWidth="75.0" />
- </children>
- </HBox>
- <Label text="Nomor Validasi" GridPane.rowIndex="2">
- <GridPane.margin>
- <Insets bottom="2.5" top="2.5" />
- </GridPane.margin>
- </Label>
- <TextField alignment="CENTER_RIGHT" GridPane.columnIndex="1" GridPane.rowIndex="2">
- <GridPane.margin>
- <Insets left="5.0" right="2.5" top="2.5" />
- </GridPane.margin>
- </TextField>
- <Label text="Bayar" GridPane.rowIndex="3" />
- <TextField fx:id="fldBayar" onKeyReleased="#fldBayarOnKeyReleased" prefHeight="25.0" prefWidth="203.0" GridPane.columnIndex="1" GridPane.rowIndex="3">
- <GridPane.margin>
- <Insets left="5.0" right="2.5" top="2.5" />
- </GridPane.margin>
- </TextField>
- </children>
- </GridPane>
- </children>
- </AnchorPane>
|