将NotifyCollectionChangedAction.Replace传递给NotifyCollectionChangedEventArgs失败

时间:2016-07-22 12:13:56

标签: c# inotifycollectionchanged

在自定义属性设置器上,我尝试调用自定义事件并将NotifyCollectionChangedAction.Replace作为NotifyCollectionChangedEventArgs的参数传递,但我得到System.ArgumentException。 我做错了什么?

我的自定义活动:

public event EventHandler<NotifyCollectionChangedEventArgs> MyEntryChanged;

protected virtual void OnMyEntryChanged(NotifyCollectionChangedEventArgs e)
{
    var handler = MyEntryChanged;
    handler?.Invoke(this, e);
}

和我的电话:

private TValue _value;

        public TValue Value
        {
            get { return _value; }
            set
            {
                if (Equals(_value, value)) return;
                _value = value;
                OnMyEntryChanged(new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Replace));
                OnPropertyChanged();
            }
        }

1 个答案:

答案 0 :(得分:2)

参数Replace要求您指定旧项目和新项目。 只需在没有任何项目的情况下调用它将导致此异常。

在你的情况下你可以像这样调用它:

if (Equals(_value, value)) return;

int indexOfPreviousItem = 0; //wherever you store your item
TValue oldItem = _value;    
_value = value;
OnMyEntryChanged(
    new NotifyCollectionChangedEventArgs(
        NotifyCollectionChangedAction.Replace, 
        value, 
        oldItem,
        indexOfPreviousItem));
OnPropertyChanged();