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 に答える