Forex_Strategy_Builder.Scanner.OnLoad C# (CSharp) Метод

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

Perform initializing
protected OnLoad ( EventArgs e ) : void
e System.EventArgs
Результат void
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);

            if (isCompactMode)
            {
                pnlInfo.Visible = false;
                smallBalanceChart.Visible = false;
                lblProgress.Visible = true;
                chbAutoscan.Visible = false;

                Width  = 300;
                Height = 95;

                StartLoading();
            }
            else
            {
                lblProgress.Visible = false;
                chbAutoscan.Visible = true;
                Width  = 460;
                Height = 540;
                if (!isTickDataFile)
                    Height -= infoRowHeight;
            }

            return;
        }