Search in sources :

Example 1 with TxIdTextField

use of bisq.desktop.components.TxIdTextField in project bisq-desktop by bisq-network.

the class FormBuilder method addLabelTxIdTextField.

public static Tuple2<Label, TxIdTextField> addLabelTxIdTextField(GridPane gridPane, int rowIndex, String title, String value, double top) {
    Label label = addLabel(gridPane, rowIndex, title, top);
    TxIdTextField txTextField = new TxIdTextField();
    txTextField.setup(value);
    GridPane.setRowIndex(txTextField, rowIndex);
    GridPane.setColumnIndex(txTextField, 1);
    gridPane.getChildren().add(txTextField);
    return new Tuple2<>(label, txTextField);
}
Also used : TxIdTextField(bisq.desktop.components.TxIdTextField) Tuple2(bisq.common.util.Tuple2) AutoTooltipLabel(bisq.desktop.components.AutoTooltipLabel) Label(javafx.scene.control.Label)

Aggregations

Tuple2 (bisq.common.util.Tuple2)1 AutoTooltipLabel (bisq.desktop.components.AutoTooltipLabel)1 TxIdTextField (bisq.desktop.components.TxIdTextField)1 Label (javafx.scene.control.Label)1