INotifyPropertyChanged的静态事件

时间:2015-06-29 20:30:18

标签: wpf events binding

我的模型中有ObservableCollection这个集合,所有这些集合项都在ListView内,我可以看到它的属性随着我在课堂上创建的事件而变化:

public event PropertyChangedEventHandler PropertyChanged;

virtual public void NotifyPropertyChange(string propertyName)
{
    var handler = PropertyChanged;
    if (handler != null)
        handler(this, new PropertyChangedEventArgs(propertyName));
}

public string FileName
{
    get { return _fileName; }
    set
    {
        _fileName = value;
        NotifyPropertyChange("FileName");
    }
}

现在我的模型有另一个属性static

public static int counter;

所以我的问题是如何为我的静态成员添加另一个事件。

0 个答案:

没有答案