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