ComponentFactory.Krypton.Docking.DockingElementClosedCollection.InternalInsert C# (CSharp) 메소드

InternalInsert() 보호된 메소드

Insert a docking element to the collection.
protected InternalInsert ( int index, IDockingElement item ) : void
index int Insertion index.
item IDockingElement IDockingElement reference.
리턴 void
        protected virtual void InternalInsert(int index, IDockingElement item)
        {
            // Hook up the parent relationship, it is the responsability of the 'item'
            // to check that its name does not already exist in our collection.
            item.Parent = this;

            _elements.Insert(index, item);
        }