VixenApplication.DisplaySetup.DisplaySetup_Load C# (CSharp) Метод

DisplaySetup_Load() приватный Метод

private DisplaySetup_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
        private void DisplaySetup_Load(object sender, EventArgs e)
        {
            _setupElementsTree = new SetupElementsTree(_elementTemplates, _elementSetupHelpers);
            _setupElementsTree.Dock = DockStyle.Fill;
            _setupElementsTree.MasterForm = this;

            _setupPatchingSimple = new SetupPatchingSimple();
            //_setupPatchingSimple.Dock = DockStyle.Fill;
            _setupPatchingSimple.MasterForm = this;
            _setupPatchingGraphical = new SetupPatchingGraphical();
            //_setupPatchingGraphical.Dock = DockStyle.Fill;
            _setupPatchingGraphical.MasterForm = this;

            _setupControllersSimple = new SetupControllersSimple();
            //_setupControllersSimple.Dock = DockStyle.Fill;
            _setupControllersSimple.MasterForm = this;

            activateControllersControl(_setupControllersSimple);
            activateElementControl(_setupElementsTree);

            radioButtonPatchingSimple.Checked = true;
            splitContainer1.SplitterDistance = tableLayoutPanelElementSetup.Width + 6;
            splitContainer2.SplitterDistance = (int)(tableLayoutPanelPatchingSetup.Width + (10 * ScalingTools.GetScaleFactor()));
        }