Jump to: navigation, search

EditPropertyValueCommand


Revision as of 06:59, 10 December 2020 by CWU (Talk | contribs) (Created page with "== EditPropertyValueCommand == This command is used to open a dialog for editing a property. == Command Properties == * ID: String. The ID of the property to be edited. * Sca...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

EditPropertyValueCommand

This command is used to open a dialog for editing a property.

Command Properties

  • ID: String. The ID of the property to be edited.
  • ScanToInput: bool. If this is false (default) a textbox for editing is shown. If true, a scan dialog appears, that allows to scan a barcode.

Example:

<Button Command="{Binding EditPropertyValueCommand}" Text="ScanToEdit">
        <Button.CommandParameter>
                <uc:KeyValueList>
                        <uc:KeyValueParameter Key="ID" Value="TEXT_READWRITE" />
                        <uc:KeyValueParameter Key="ScanToInput" Value="true" />
                </uc:KeyValueList>
        </Button.CommandParameter>
</Button>