public new void SuspendLayout()
        {
            this.Suspended = true;
            DoubleBuffControl viewControl = this.ViewControl;

            if (viewControl != null)
            {
                viewControl.SuspendLayout();
            }
            VScrollBar scrollbar = this.Scrollbar;

            if (scrollbar != null)
            {
                scrollbar.SuspendLayout();
            }
            base.SuspendLayout();
        }