現在、ObservableCollection にバインドされたコンボボックスがあります
<ComboBox ItemsSource="{Binding Past}" DisplayMemberPath="Date" IsSynchronizedWithCurrentItem="True"/>
「IsSynchronizedWithCurrentItem」を使用して、次のようなラベルのセットで以下のデータを表示するラベルのセットと「同期」します。
<Label DataContext="{Binding SelectedDate}" Content="{Binding Minimum}" />
300 を超える日付が含まれるコンボボックスではなく、DatePicker (WPF Toolkit のもの、http://wpf.codeplex.com/など) を使用して日付を選択する方がはるかに簡単なので、「 DatePicker が「現在の日付」を制御できるように IsSynchronizedWithCurrentItem を使用しますか?
ありがとうございました