System.Windows.Forms.Control.ResumeLayout C# (CSharp) 메소드

ResumeLayout() 공개 메소드

public ResumeLayout ( ) : void
리턴 void
		public void ResumeLayout() {
			ResumeLayout (true);
		}

Same methods

Control::ResumeLayout ( bool performLayout ) : void

Usage 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