Hi Folks, Recently I faced with very strange issue: I set the datePicker.MinimumDate and datePicker.MaximumDate, set datePicker.Date in between and all goes fine: user can select dates and I get it in ValueChanged handler. But if user selecting any date out of range between Min and Max, datePicker.ValueChanged returns the nearest value from the available range, that is actually equal to datePicker.MinimumDate or datePicker.MaximumDate. But these dates are disabled in the picker! As a result my picker selects wrong dates in described case. for example: if user tap on datePicker.MinimumDate, all future selections will lead to date in picker - 1 day. One Note: when picker jumps back after selection wrong date, ValueChanged doesn't handle it - only user selection, I think thats the reason, but still can't fix it.
Anyone solved this problem before or can help me with it?