This question is locked. New answers and comments are not allowed.
hi!
When I implement RadMaskedNumericInput, and I enter negative number into my user control,
when focus again, have not negative symbol
Ex: I enter -123456
when lost focus: (123456)
when focus again: 123456
When I implement RadMaskedNumericInput, and I enter negative number into my user control,
when focus again, have not negative symbol
public class LVMaskedNumericBox : RadMaskedNumericInput
{
public LVMaskedNumericBox()
{
this.FormatString = "{0:#,###.#0;(#,###.#0);'}";
this.AutoFillNumberGroupSeparators = false;
this.AutoFillZeros = false;
this.IsClearButtonVisible = false;
this.AllowSkipPlaceholders = false;
this.Placeholder = ' ';
}
}
<
Grid
x:Name
=
"LayoutRoot"
>
<
lib:LVMaskedNumericBox
x:Name
=
"test"
></
lib:LVMaskedNumericBox
>
</Grid>
Ex: I enter -123456
when lost focus: (123456)
when focus again: 123456