0

如果集合被修改,如何引发事件。类型是对象,如:

public object Source
{
   get;
   set;
}

我想在 OnPropertyChanged 中引发 Source 的 NotifyCollectionChangedEvent

4

1 回答 1

1
private object _Source;
public object Source
{
    get{
        return this._Source;
    }
    set{
        this._Source = value;
        NotifyPropertyChanged("Source");
    }
}
于 2012-12-06T07:47:48.263 回答