2

我将 a 绑定CollectionViewSource到 aListView以对项目进行分组。一切都很好,除非我更新了ObservableCollection基于CollectionViewSource。如果我更新集合中对象的值,则 UI 永远不会更新。这是一个例子:

<ListView x:Name="MyListView" Margin="0,0,0,65">
    <ListView.GroupStyle>
        <GroupStyle>
            <GroupStyle.ContainerStyle>
                <Style TargetType="{x:Type GroupItem}">
                    <Setter Property="Margin" Value="0,0,0,5"/>
                    <Setter Property="Template">
                        <Setter.Value>
                            <ControlTemplate TargetType="{x:Type GroupItem}">
                                <Expander IsExpanded="true" BorderBrush="#FFA4B97F" BorderThickness="0,0,0,1">
                                    <Expander.Header>
                                        <DockPanel>
                                            <TextBlock FontWeight="Bold" Text="{Binding Name}" Margin="5,0,0,0" Width="80"/>
                                            <TextBlock FontWeight="Bold" Width="60" TextAlignment="Center" Margin="16,0,0,0" Text="{Binding Items, Converter={StaticResource Converter2}}" />
                                        </DockPanel>
                                    </Expander.Header>
                                    <ItemsPresenter />
                                </Expander>
                            </ControlTemplate>
                        </Setter.Value>
                    </Setter>
                </Style>
            </GroupStyle.ContainerStyle>
        </GroupStyle>
    </ListView.GroupStyle>
    <ListView.View>
        <GridView>
            <GridViewColumn Width="300" Header="Amount" >
                <GridViewColumn.CellTemplate>
                    <DataTemplate>
                        <TextBlock Text="{Binding Amount}" Margin="80,0,0,0"/>
                    </DataTemplate>
                 </GridViewColumn.CellTemplate>
            </GridViewColumn>
        </GridView>
    </ListView.View>
</ListView>

您会注意到它正在调用组中的转换器并为其提供项目集合。这样转换器就可以计算行的平均值并返回该结果:

public class AverageConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        IEnumerable<object> rows = (IEnumerable<object>) value;
        double average = rows.Average(a => ((DisplayRow) a).Amount);
        return average;
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

在后面的代码中,我添加行并创建CollectionViewSource

私有只读 ObservableCollection displayRows = new ObservableCollection();

public Window1()
{
    InitializeComponent();

    displayRows.Add(new DisplayRow { Title = "Sales", Amount=16} );
    displayRows.Add(new DisplayRow { Title = "Marketing", Amount=14} );
    displayRows.Add(new DisplayRow { Title = "Technology", Amount=13} );
    displayRows.Add(new DisplayRow { Title = "Sales", Amount=11} );
    displayRows.Add(new DisplayRow { Title = "Marketing", Amount=13} );
    displayRows.Add(new DisplayRow { Title = "Technology", Amount=12} );
    CollectionViewSource viewSource = new CollectionViewSource { Source = displayRows };
    viewSource.GroupDescriptions.Add(new PropertyGroupDescription("Title"));
    MyListView.ItemsSource = viewSource.View;
}

DisplayRow对象实现INotifyPropertyChanged了,并且只是一个简单的类。

一切正常,显示是我想要的方式,但如果我更改ObservableCollectionUI 中的值并不会改变。

如果我将一个元素添加到集合中,我可以看到它出现在屏幕上,但从未调用转换器来重新计算平均值。有任何想法吗?

4

3 回答 3

4

我找到了解决这个问题的黑客方法。

private CollectionViewSource _viewSource;

private void ModifyData()
{
    // Modify some data

    // This will cause the ListView to refresh its data and update the UI
    // and also cause the converter to be called to reformat the data.
    _viewSource.View.Refresh();
}

希望有帮助。

于 2009-10-23T13:06:59.237 回答
2

在不刷新整个视图的情况下,这仍然可以处理,我实现了这个。

在 CollectionView 中创建数据绑定将允许组的更改通知。

查看http://stumblingaroundinwpf.blogspot.com/2009/11/building-smarter-wpf-collectionview-one.html

于 2009-11-23T01:55:33.507 回答
1

如果数据源是 ObservableCollection,则视图将在集合更改时更新,即添加或删除项目时。如果您希望在编辑基础数据时更新视图,则该类必须实现 INotifyPropertyChanged 接口。

在您的情况下,DisplayRow 类必须实现 INotifyPropertyChanged,并且 displayRows 应该是 ObservableCollection。

据我了解,这是官方的做法。我可能错了。

于 2011-11-23T13:14:27.013 回答