Habanero.Faces.Win.FormExceptionNotifier.CollapsibleExceptionNotifyForm.ResizeForm C# (CSharp) Метод

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

Scales the components when the form is resized
private ResizeForm ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
            private void ResizeForm(object sender, EventArgs e)
            {
                /*
                int sdHeight = Height - BUTTONS_HEIGHT - 16;
                if (sdHeight > SUMMARY_HEIGHT)
                {
                    sdHeight = SUMMARY_HEIGHT;
                }
                _summary.Height = sdHeight;
                int heightRemaining = Height - BUTTONS_HEIGHT - sdHeight - 16;
                _fullDetail.Height = heightRemaining > 0 ? heightRemaining : 0;
                 * */
            }