在自定义属性设置器上,我尝试调用自定义事件并将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();
}
}
答案 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();