OnGotFocus() private method

private OnGotFocus ( EventArgs e ) : void
e System.EventArgs
return void
Ejemplo n.º 1
0
 protected void InvokeGotFocus(Control toInvoke, EventArgs e)
 {
     if (toInvoke == null)
     {
         return;
     }
     toInvoke.OnGotFocus(e);
 }
Ejemplo n.º 2
0
		protected void InvokeGotFocus(Control toInvoke, EventArgs e) {
			toInvoke.OnGotFocus(e);
		}