Forex_Strategy_Builder.Controls.PnlJournal_Resize C# (CSharp) Method

PnlJournal_Resize() protected method

Arranges the controls after resizing
protected PnlJournal_Resize ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        void PnlJournal_Resize(object sender, EventArgs e)
        {
            if (Configs.ShowJournal && Configs.JournalByBars)
            {
                pnlJournalByBars.Width    = 2 * this.ClientSize.Width / 3;
                pnlJournalPosition.Height = (pnlJournal.ClientSize.Height - space) / 2;
            }

            return;
        }