protected void FirePropertyChanged(string[] propertyNames) { NotifyPropertyChanged.FirePropertyChanged(propertyNames, this, this.PropertyChanged); }
protected void FirePropertyChanged(string propertyName) { NotifyPropertyChanged.FirePropertyChanged(new string[] { propertyName }, this, this.PropertyChanged); }