I currently have a combobox with bound to an ObservableCollection
<ComboBox ItemsSource="{Binding Past}" DisplayMemberPath="Date" IsSynchronizedWithCurrentItem="True"/>
Using, IsSynchronizedWithCurrentItem it "synchronizes" with a set of labels that show the data below in a set of labels like:
<Label DataContext="{Binding SelectedDate}" Content="{Binding Minimum}" />
As it is a lot easier to select a date using a DatePicker (like the WPF Toolkit one, http://wpf.codeplex.com/) rather than a combobox with over 300 dates in it, is there someway to set something like IsSynchronizedWithCurrentItem so that the DatePicker can control the current date ?
Thank you