Beispiel #1
0
 public MultipleNotifyCollectionChangedEventArgs(NotifyCollectionChangedAction action, ChatRoomChangeType type, object changedItem)
     : base(action, changedItem)
 {
     ChangeType = type;
 }
Beispiel #2
0
 /// <summary>
 /// Fires the collection changed event.
 /// </summary>
 /// <param name="action">The action.</param>
 /// <param name="groupName">Name of the group.</param>
 /// <param name="changedItem">The changed item.</param>
 public void FireCollectionChanged(NotifyCollectionChangedAction action, ChatRoomChangeType changeType, 
     object changedItem)
 {
     if (CollectionChanged != null)
         CollectionChanged(this, new MultipleNotifyCollectionChangedEventArgs(action,
             changeType, changedItem));
 }