1

我正在构建一个 Windows 8 Metro 应用程序,我需要在其中过滤一个ObservableCollection. 遗憾的是,WinRT-Framework 中的 CollectionViewSource-Class 不支持过滤,所以我尝试使用IValueConverterfor 这样做。

我的 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”为空,而不是布尔值。我究竟做错了什么?

4

1 回答 1

0

如果绑定本身不支持绑定,您可以更改 Appointments 属性的类型,使其包含您想要的参数。如果您的转换器只被调用一次 - 您可以尝试订阅 ObservableProperty 的CollectionChanged事件并在每次发生时为 Appointments 引发 PropertyChanged 事件。

于 2012-08-07T16:29:13.147 回答