I have a datePicker in my WPF application. The text property of datepicker is bound to a Nullable DateTime property in my view model. UpdateSourceTrigger is set to PropertyChanged.
The problem I am facing is when I enter today's date like 2/10, it posts back to the view model as '2/10/2014'. Is there something which I am doing wrong.
Is there any way to stop the partial date to be posted back to the view model on text change?
Also I do not wish to change my nullable DateTime to text.
thanks Sandeep