protected override sealed UIElementCollection CreateUIElementCollection(FrameworkElement logicalParent)
        {
            DisconnectedUIElementCollection children = new DisconnectedUIElementCollection(this);

            children.CollectionChanged += new NotifyCollectionChangedEventHandler(OnChildrenCollectionChanged);
            return(children);
        }
示例#2
0
 internal void InitializeOwner(DisconnectedUIElementCollection owner)
 {
     _owner = owner;
 }