In a WPF MVVM (caliburn micro) application I need to bind a DateTimeOffset property to a wpf DatePicker control (SelectedDate property).
I think I can use caliburn micro's value converter feature to convert DateTimeOffset to DateTime and vice versa. Could anyone please provide me the steps with sample code?
<DatePicker SelectedDate="{Binding DateOfBirth}"/>