Example #1
0
 public static NotifyCollectionChangedEventArgs CreateCollectionArgsChangedItemsIndexOldIndex(NotifyCollectionChangedAction action, IListTable changedItems, int index, int oldIndex)
 {
     return(new NotifyCollectionChangedEventArgs(action, changedItems, index, oldIndex));
 }
Example #2
0
 public static NotifyCollectionChangedEventArgs CreateCollectionArgsNewItemsOldItems(NotifyCollectionChangedAction action, IListTable newItems, IListTable oldItems)
 {
     return(new NotifyCollectionChangedEventArgs(action, newItems, oldItems));
 }
Example #3
0
 public static NotifyCollectionChangedEventArgs CreateCollectionArgsNewItemsOldItemsStartingIndex(NotifyCollectionChangedAction action, IListTable newItems, IListTable oldItems, int startingIndex)
 {
     return(new NotifyCollectionChangedEventArgs(action, newItems, oldItems, startingIndex));
 }
Example #4
0
 public static NotifyCollectionChangedEventArgs CreateCollectionArgsChangedItems(NotifyCollectionChangedAction action, IListTable changedItems)
 {
     return(new NotifyCollectionChangedEventArgs(action, changedItems));
 }