Hello,
Just a simple question.
Is it possible to change the number of decimals in a XamNumericEditor programmatically?
You can change the number of decimals using the Mask property.
In your case just set the Mask in code behind:
Mask="{double:10.5}";
In this mask the decimals will be 5(the desired number of decimals)
Hope this helps,
Anastas