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

Refresh() public method

public Refresh ( ) : void
return void
		public virtual void Refresh ()
		{
			this.PerformLayout ();
			
		}
		/*

Usage Example

Example #1
0
 public bool UpdateForm()
 {
     try {
         if (formX != null)
         {
             formX.Refresh();
         }
     }
     catch (Exception exn) {
         return(false);
     }
     return(true);
 }
All Usage Examples Of System.Windows.Forms.Form::Refresh
Form