ComponentFactory.Quicksilver.Layout.MetaElementCollection.MetaElementCollection C# (CSharp) 메소드

MetaElementCollection() 공개 메소드

Initialize a new instance of the MetaElementCollection class.
public MetaElementCollection ( UIElement visualParent, FrameworkElement logicalParent ) : System
visualParent UIElement The UIElement parent of the collection.
logicalParent System.Windows.FrameworkElement The logical parent of the elements in the collection.
리턴 System
        public MetaElementCollection(UIElement visualParent,
                                     FrameworkElement logicalParent)
            : base(visualParent, logicalParent)
        {
            _isItemsHost = false;

            _visualParent = visualParent;
            _logicalParent = logicalParent;

            _externalChildren = new List<UIElement>();
            _internalChildren = new VisualCollection(visualParent);
        }