をフィルタリングする必要がある Windows 8 Metro アプリケーションを構築していますObservableCollection
。悲しいことに、WinRT-Framework の CollectionViewSource-Class はフィルタリングをサポートしていないため、そのために を使用しようとしIValueConverter
ています。
私のXAML:
<RadioButton Content="this Week" GroupName="AppointmentFilter" IsChecked="True" Name="rbtnFilter"/>
<RadioButton Content="all" GroupName="AppointmentFilter"/>
<ListView ItemsSource="{Binding Appointments, ConverterParameter={Binding rbtnFilter.IsChecked}, Converter={StaticResource Filter}}"/>
私の IValueConverter:
public class AppointmentListFilter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, string language)
{
ObservableCollection<VMAppointment> appointments = value as ObservableCollection<VMAppointment>;
bool filter = (bool)parameter;
if (filter)
{
return new ObservableCollection<VMAppointment>(appointments.Where(x => x.Date.CompareTo(DateTime.Now.AddDays(7)) <= 0));
}
else
{
return appointments;
}
}
public object ConvertBack(object value, Type targetType, object parameter, string language)
{
throw new NotImplementedException();
}
}
が実行されているときIValueConverter
、パラメーター「parameter」は null であり、ブール値ではありません。私は何を間違っていますか?