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