/// <summary> /// Raise <see cref="INotifyPropertyChanged.PropertyChanged"/> with all properties /// that has specials group attribute <see cref="ModelPropertyAttribute"/> /// in this instance. /// </summary> public void RefreshProperties(int group) { this.NotifyPropertyChanged(RefreshPropertiesMapper.FromType(this.GetType()).GetProperties(group)); }
/// <summary> /// Raise <see cref="INotifyPropertyChanged.PropertyChanged"/> with all properties /// that has attribute <see cref="ModelPropertyAttribute"/> /// in this instance. /// </summary> public void RefreshProperties() { this.NotifyPropertyChanged(RefreshPropertiesMapper.FromType(this.GetType()).Properties); }