9using System.Collections.Generic;
12using System.ComponentModel;
13using System.Collections.Specialized;
58 public ChildChangedEventArgs(
object childObject, PropertyChangedEventArgs propertyArgs, ListChangedEventArgs listArgs)
59 : this(childObject, propertyArgs)
91 public ChildChangedEventArgs(
object childObject, PropertyChangedEventArgs propertyArgs, NotifyCollectionChangedEventArgs listArgs)
92 : this(childObject, propertyArgs)
Contains event data about the changed child object.
PropertyChangedEventArgs PropertyChangedArgs
Gets the PropertyChangedEventArgs object from the child's PropertyChanged event, if the child is not ...
ChildChangedEventArgs(object childObject, PropertyChangedEventArgs propertyArgs, ListChangedEventArgs listArgs)
Creates an instance of the type.
object ChildObject
Gets a reference to the changed child object.
ListChangedEventArgs ListChangedArgs
Gets the ListChangedEventArgs object from the child's ListChanged event, if the child is a collection...
ChildChangedEventArgs(object childObject, PropertyChangedEventArgs propertyArgs, NotifyCollectionChangedEventArgs listArgs)
Creates an instance of the type.
NotifyCollectionChangedEventArgs CollectionChangedArgs
Gets the NotifyCollectionChangedEventArgs object from the child's CollectionChanged event,...
ChildChangedEventArgs(object childObject, PropertyChangedEventArgs propertyArgs)
Creates an instance of the type.