Dear support team?
It is possible in a XamNumericEditor to display leading 0? That means for instance, if value = 10, 0010 should be displayed. If value = 9 0009 should be displayed and so on.
Hello hico,
If you want to display leading zeros while in edit mode you can use a mask, e.g. Mask="nnnn". You will also have to set the PromptChar="0". Note that in this scenario "n" is a digit placeholder and its default value is underscore "_".
If you want to achieve this functionality in non-edit mode you can use Format="0000".I have created a small sample which illustrates this approach you can find it as an attached file.
Thanks a lot => A generic style in our solution caused the problem, but I could fix that thanks to your answer! Problem solved.