OnGotKeyboardFocus() protected method

protected OnGotKeyboardFocus ( KeyboardFocusChangedEventArgs e ) : void
e KeyboardFocusChangedEventArgs
return void
Example #1
0
 private static void GotKeyboardFocusClass(Actor sender, KeyboardFocusChangedEventArgs e)
 {
     if (sender != null)
     {
         sender.OnGotKeyboardFocus(e);
     }
 }
Example #2
0
 private static void GotKeyboardFocusClass(Actor sender, KeyboardFocusChangedEventArgs e)
 {
     if (sender != null)
         sender.OnGotKeyboardFocus(e);
 }