System.Windows.Forms.Control.ResumeLayout C# (CSharp) Method

ResumeLayout() public method

public ResumeLayout ( ) : void
return void
		public void ResumeLayout() {
			ResumeLayout (true);
		}

Same methods

Control::ResumeLayout ( bool performLayout ) : void

Usage Example

Example #1
0
        private static void ResumeDrawing(Control parent)
        {
            parent.ResumeLayout();
            SendMessage(parent.Handle, WM_SETREDRAW, true, 0);

            // Force redraw of control now
            parent.Refresh();
        }
All Usage Examples Of System.Windows.Forms.Control::ResumeLayout
Control