![Avatar](https://secure.gravatar.com/avatar/9a6b6bb320eebf47a8e898a9b75a4eef.jpg?s=64&d=identicon&r=g)
I'm using a TimeEditBox with a Minimum and Maximum value set:
<actipro:TimeEditBox x:Name="myTime" Value="00:00" Format="HH:mm" SpinnerVisibility="Visible" SpinWrapping="SimpleWrap" Minimum="00:00" Maximum="23:59"/>
When clicking the increment button of the spinner, the value jumps to 23:59, and after that the value cannot be edited by the spinner controls anymore. This happens as soon as the Maximum value is set. If I leave it out, it seems to work correctly. I noticed that the default Minimum value is set to "1-1-53, 0:00:00". My guess is that by setting the Maximum value, the Minimum value is set to the same value (because the new Maximum value is smaller than the default Minimum value). Because I'm only interested in the Time component of the DateTime object, I am working with DateTime objects with Date 1-1-1.
Any ideas on what I'm doing wrong or how I can get the normal behaviour?
Thank you,
Tim