diff --git a/ExtendedWPFToolkitSolution/Src/WPFToolkit.Extended/DateTimePicker/Implementation/DateTimePicker.cs b/ExtendedWPFToolkitSolution/Src/WPFToolkit.Extended/DateTimePicker/Implementation/DateTimePicker.cs index 8f452ea5..638d50c6 100644 --- a/ExtendedWPFToolkitSolution/Src/WPFToolkit.Extended/DateTimePicker/Implementation/DateTimePicker.cs +++ b/ExtendedWPFToolkitSolution/Src/WPFToolkit.Extended/DateTimePicker/Implementation/DateTimePicker.cs @@ -124,7 +124,7 @@ namespace Microsoft.Windows.Controls if (_calendar != null && _calendar.SelectedDate != newValue) { _calendar.SelectedDate = newValue; - _calendar.DisplayDate = newValue.Value; + _calendar.DisplayDate = newValue ?? DateTime.Now; } base.OnValueChanged(oldValue, newValue);