Team,
I have a XamNumericEditor which mask as {}{double:-2.0} (a textbox editor for entering 2 digit time value). However I would like to preserve the leading zero in the XamNumericEditor after value loaded to the field given it is a single digit number.
e.g. I have 2 and after value loaded, would like to see 02
Please advise. Thanks!
Chris
Chris,
I just realized I provided you with WPF answer instead of Silverlight.
The xamNumericEditor in silverlight does not have a Format property, but you can use xamNumericInput, and the mask and format setting is: Mask="{}{double:-2.0}" Format="00.#".
I hope this works for you.
Sam