System.Windows.Forms.Control.ResumeLayout C# (CSharp) Méthode

ResumeLayout() public méthode

public ResumeLayout ( ) : void
Résultat void
		public void ResumeLayout() {
			ResumeLayout (true);
		}

Same methods

Control::ResumeLayout ( bool performLayout ) : void

Usage Example

        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