Ejemplo n.º 1
0
 protected void OnChildrenCollectionChanged(ICollection <Node> added, ICollection <Node> removed)
 {
     ChildrenCollectionChanged?.Invoke(this,
                                       new CollectionChangedEventArgs <Node>(
                                           added, removed
                                           )
                                       );
 }
 protected virtual void OnChildrenCollectionChanged()
 {
     ChildrenCollectionChanged?.Invoke(this, EventArgs.Empty);
 }