Example #1
0
 public NotifyingCollectionChangedEventArgs(NotifyingCollectionChangeAction action, object newItem, int newItemIndex, object oldItem, int oldItemIndex)
 {
     Action       = action;
     NewItem      = newItem;
     NewItemIndex = newItemIndex;
     OldItem      = oldItem;
     OldItemIndex = oldItemIndex;
 }
 public NotifyingCollectionChangingEventArgs(NotifyingCollectionChangeAction action, object newItem, int newItemIndex, object oldItem, int oldItemIndex)
     : base(action, newItem, newItemIndex, oldItem, oldItemIndex)
 {
 }
 public NotifyingCollectionChangingEventArgs(NotifyingCollectionChangeAction action) : base(action)
 {
 }
Example #4
0
 public NotifyingCollectionChangedEventArgs(NotifyingCollectionChangeAction action)
     : this(action, null, -1, null, -1)
 {
 }