Alsing.Windows.Forms.CoreLib.SplitViewParentControl.ActivateSplits C# (CSharp) Метод

ActivateSplits() защищенный Метод

protected ActivateSplits ( ) : void
Результат void
        protected virtual void ActivateSplits()
        {
            if (UpperLeft == null)
            {
                UpperLeft = GetNewView();
                UpperRight = GetNewView();
                LowerLeft = GetNewView();

                splitView.Controls.AddRange(new Control[]
                                            {
                                                UpperLeft,
                                                LowerLeft,
                                                UpperRight
                                            });

                splitView.UpperRight = LowerLeft;
                splitView.UpperLeft = UpperLeft;
                splitView.LowerLeft = UpperRight;

                CreateViews();
            }
        }