我目前有一个绑定到 ObservableCollection 的组合框
<ComboBox ItemsSource="{Binding Past}" DisplayMemberPath="Date" IsSynchronizedWithCurrentItem="True"/>
使用“IsSynchronizedWithCurrentItem”,它与一组标签“同步”,这些标签在一组标签中显示以下数据,例如:
<Label DataContext="{Binding SelectedDate}" Content="{Binding Minimum}" />
由于使用 DatePicker(如 WPF 工具包之一,http ://wpf.codeplex.com/)而不是包含超过 300 个日期的组合框来选择日期要容易得多,因此有没有办法设置类似' IsSynchronizedWithCurrentItem' 以便 DatePicker 可以控制“当前日期”?
谢谢