Beispiel #1
0
 public void DeleteRecord(object data)
 {
     // crash protection: when you delete records from the diagrams,
     // between the actual deleting a record and updating the list
     // may take a few requests to update the list's items which does not already exist
     if (fListMan != null && fListMan.DeleteRecord(data))
     {
         VirtualListSize = fListMan.FilteredCount;
     }
 }