2

我想做的是FreezableCollection.AddRange(collectionToAdd)

每次我添加到 FreezableCollection 时,都会引发一个事件并发生一些事情。现在我有一个想要添加的新集合,但这次我希望 FreezableCollection 的CollectionChanged 事件只触发一次。

循环并添加它们将为每个新项目引发事件。

有没有一种方法可以将所有目标都添加到 FreezableCollection,类似于 List.AddRange?

4

2 回答 2

3

从集合派生并覆盖您想要更改的行为。我能够这样做:

public class PrestoObservableCollection<T> : ObservableCollection<T>
    {
        private bool _delayOnCollectionChangedNotification { get; set; }

        /// <summary>
        /// Add a range of IEnumerable items to the observable collection and optionally delay notification until the operation is complete.
        /// </summary>
        /// <param name="itemsToAdd"></param>
        public void AddRange(IEnumerable<T> itemsToAdd)
        {
            if (itemsToAdd == null) throw new ArgumentNullException("itemsToAdd");

            if (itemsToAdd.Any() == false) { return; }  // Nothing to add.

            _delayOnCollectionChangedNotification = true;            

            try
            {
                foreach (T item in itemsToAdd) { this.Add(item); }
            }
            finally
            {
                ResetNotificationAndFireChangedEvent();
            }
        }

        /// <summary>
        /// Clear the items in the ObservableCollection and optionally delay notification until the operation is complete.
        /// </summary>
        public void ClearItemsAndNotifyChangeOnlyWhenDone()
        {
            try
            {
                if (!this.Any()) { return; }  // Nothing available to remove.

                _delayOnCollectionChangedNotification = true;

                this.Clear();
            }
            finally
            {
                ResetNotificationAndFireChangedEvent();
            }
        }

        /// <summary>
        /// Override the virtual OnCollectionChanged() method on the ObservableCollection class.
        /// </summary>
        /// <param name="e">Event arguments</param>
        protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
        {
            if (_delayOnCollectionChangedNotification) { return; }

            base.OnCollectionChanged(e);
        }

        private void ResetNotificationAndFireChangedEvent()
        {
            // Turn delay notification off and call the OnCollectionChanged() method and tell it we had a change in the collection.
            _delayOnCollectionChangedNotification = false;
            this.OnCollectionChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset));
        }
    }
于 2012-03-24T17:16:41.140 回答
0

要跟进@BobHorn 的好答案,使其与FreezableCollection,

来自文件

该成员是显式接口成员实现。只有当 FreezableCollection 实例被强制转换为 INotifyCollectionChanged 接口时才能使用它。

所以你可以通过演员来做到这一点。

(FreezableCollection as INotifyCollectionChanged).CollectionChanged += OnCollectionChanged;
于 2018-01-12T06:42:01.417 回答