/// <summary>
 /// Raise the DataSourceChanged Event
 /// </summary>
 /// <param name="listChangedType">the change type</param>
 /// <param name="index">index where the change occur</param>
 /// <param name="oldRecord">the old record</param>
 /// <param name="newRecord">the new record</param>
 private void OnDataChanged(ListChangedType listChangedType, int index, TranslationsGroup oldRecord, TranslationsGroup newRecord)
 {
     _unsavedChanges = true;
     TranslationsGroupsListChanged?
     .Invoke(this, new TranslationsGroupsListChangedEventArgs(listChangedType, index, oldRecord, newRecord));
 }
Esempio n. 2
0
 private void Provider_TranslationsGroupsListChanged
     (object sender, TranslationsGroupsListChangedEventArgs e)
 => TranslationsGroupsListChanged?.Invoke(sender, e);