Exemple #1
0
 protected void NotifyItemRemoved(int index, LocaleStringTableReference value)
 {
     NotifyPropertyChanged(kCountChanged);
     CollectionChanged.SafeNotify(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Remove,
                                                                             value, index));
 }
Exemple #2
0
 protected void NotifyItemChanged(int index, LocaleStringTableReference oldValue, LocaleStringTableReference newValue)
 {
     CollectionChanged.SafeNotify(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Replace,
                                                                             oldValue, newValue, index));
 }