05-27-2015 08:56 AM
Is it possile to allow a user just to enter hex values (extactly 12 digits) in an numericTextBoxDouble (WPF)?
Thanks for our help
Keb Mo
05-28-2015 09:43 AM
The double data type does not support the standard Hexadecimal Format Specifier, but you can use an integer type and a custom range to limit the control to a maximum of 12 digits:
<ni:NumericTextBoxUInt64 ValueFormatter="X12" Range="0,281474976710655" />
06-01-2015 02:39 AM
Thanks Paul