My Problem is similar to http://news.infragistics.com/forums/t/39342.aspx. Except I want the user to be able to enter in time in 24hour format then on loss of focus the box the time is displayed in 12 hour format.
XamDateTimeEditor does not allow a mask of HH:mm tt, just a format of HH:mm tt
I am lead to believe that I will have to wrap XamDateTimeEditor and override input? Any other suggestions?
The Mask property supports specific characters and tokens that are documented here. Those are not the same characters that are used for the Format property which corresponds with the values available for formatting strings in .net (both standard and custom). Based on your description then you would use a Mask of "hh:mm" (the absence of the am/pm token indicates 24 hour) and a Format of "hh:mm tt".