Hi,
how can I show the groupseparator for integer values using XamNumericEditor?
The editors valuetype is set to Int32.
I tried the following:
Nothing changes the result: I always get 1234 instead of 1,234
Best,cew3
You can try with this mask - Mask="nnn,nnn,nnn,nnn".
And set the ValueType={x:Type sys:Int32}
Regards,
Anastas
thanks for the hint.
>> You can try with this mask - Mask="nnn,nnn,nnn,nnn".
If I use your mask, the user could type up to 12 numbers. Int32 has a maximum value of 2147483647.
So the mask should be "-n,nnn,nnn,nnn" to avoid per default to big values and allow negative values using the "-" in front of the mask.Because I have different valuetypes, I have to calculate the right mask. But it works.
Best regards,
cew3