Exemplo n.º 1
0
 /// <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));
 }
Exemplo n.º 2
0
 /// <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);
 }