Пример #1
0
 public void Remove(WorkFile workFile)
 {
     base.Remove(workFile);
     UpdateListViewCounts?.Invoke(this, new UpdateListViewEventArgs {
         Count = Count
     });
 }
Пример #2
0
 public new void Add(WorkFile workFile)
 {
     base.Add(workFile);
     //BMTools.BmDebug.Debug.InfoAsync("+++");
     UpdateListViewCounts?.Invoke(this, new UpdateListViewEventArgs {
         Count = Count
     });
 }