System.Windows.Forms.Form.PerformLayout C# (CSharp) Method

PerformLayout() public method

public PerformLayout ( ) : void
return void
		public void PerformLayout ()
		{
			m_helper.ContentView.SetNeedsDisplayInRect (m_helper.ContentView.Frame);
		}
		internal void CallLoad ()

Usage Example

Example #1
0
 // Remove this main menu from its owning form.
 internal void RemoveFromForm()
 {
     // Cause the form to reposition its controls
     // now that the client area has changed
     ownerForm.PerformLayout();
     ownerForm = null;
 }
All Usage Examples Of System.Windows.Forms.Form::PerformLayout
Form