PagedCollectionView内存泄漏Silverlight 4

时间:2010-08-24 13:47:20

标签: data-binding mvvm silverlight-4.0

我有一些可观察的收藏品。

 /// <summary>
    /// The <see cref="Items" /> property's name.
    /// </summary>
    public const string ItemsPropertyName = "Items";

    private ObservableCollection<SomeItem> _items = new ObservableCollection<BrandItem>();

    /// <summary>
    /// Gets the Items property.
    /// </summary>
    public ObservableCollection<SomeItem> Items
    {
        get
        {

            return _items;
        }

        set
        {
            if (_items == value)
            {
                return;
            }

            _items = value;

            // Update bindings, no broadcast
            RaisePropertyChanged(ItemsPropertyName);
        }
    }

以及pagedCollectionView因为我必须在datagrid中对项目进行分组

 public const string ItemGroupedPropertyName = "ItemGrouped";

    private PagedCollectionView _itemsGrouped;

    /// <summary>
    /// Gets the ItemSpecificationsGrouped property.
    /// </summary>
    public PagedCollectionView ItemSpecificationsGrouped
    {
        get { return _itemsGrouped; }

        set
        {
            if (_itemsGrouped == value)
            {
                return;
            }

            _itemsGrouped = value;

            // Update bindings, no broadcast
            RaisePropertyChanged(ItemGroupedPropertyName);
        }
    }
    #endregion

在viewmodel构造函数中我设置了

 ItemGrouped = new PagedCollectionView(Items);
 ItemGrouped.GroupDescriptions.Add(new PropertyGroupDescription("GroupName"));

并且在视图中有一个绑定ItemsGrouped的数据网格

<data:DataGrid ItemsSource="{Binding ItemsGrouped}" AutoGenerateColumns="False">
                                    <data:DataGrid.Columns >
                                        <data:DataGridTextColumn  IsReadOnly="True"
                                             Binding="{Binding ItemAttribut1}" Width="*"/>
                                        <data:DataGridTextColumn    IsReadOnly="True"
                                             Binding="{Binding Attribute2}" Width="*" />
                                    </data:DataGrid.Columns>

                            </data:DataGrid>

当我更改项目中的项目(清除并添加新项目)多次后,我有内存泄漏..当我删除I​​temsSource一切都很好..所以我知道PagedCollectionView导致内存泄漏,但我不知道为什么。好吗,拜托?或者通过集合中的某个属性对数据网格内的项目进行分组的另一种解决方案..谢谢!!

1 个答案:

答案 0 :(得分:1)

问题是从您的RaisePropertyChanged(ItemsPropertyName)连接NotifyPropertyChanged的分页集合视图;并且永远不会释放事件钩子......我解决了这个问题,因为我不需要通过返回ICollectionView进行分组。将网格绑定到ObservableCollection时,datagrid将为您创建PagedCollectionView。绑定到ICollectionView时,网格将使用ICollectionView而不创建PagedCollectionView。希望这会有所帮助...

    public ICollectionView UserAdjustments
    {
        get { return _userAdjustmentsViewSource.View; }
    }

    private void SetCollection(List<UserAdjustment> adjustments)
    {
        if(_userAdjustmentsViewSource == null)
        {
            _userAdjustmentsViewSource = new CollectionViewSource();
        }
        _userAdjustmentsViewSource.Source = adjustments;
        RaisePropertyChanged("UserAdjustments");
    }