OnLostFocus() private method

private OnLostFocus ( EventArgs e ) : void
e System.EventArgs
return void
Example #1
0
 protected void InvokeLostFocus(Control toInvoke, EventArgs e)
 {
     if (toInvoke == null)
     {
         return;
     }
     toInvoke.OnLostFocus(e);
 }
Example #2
0
		protected void InvokeLostFocus(Control toInvoke, EventArgs e) {
			toInvoke.OnLostFocus(e);
		}