With the DateTimePicker, I can bind a nullable DateTime property to NullableValue:
resolvedDateTimePicker.DataBindings.Add(
"NullableValue"
, _bindingSource,
"DateResolved"
,
true
, DataSourceUpdateMode.OnPropertyChanged);
Unfortunately the NullableValue property doesn't seem to exist for the TimePicker.
Will this be implemented at some point, and/or how would I bind a DateTimePicker to a nullable DateTime?