OnGotKeyboardFocus() protected method

protected OnGotKeyboardFocus ( KeyboardFocusChangedEventArgs e ) : void
e KeyboardFocusChangedEventArgs
return void
示例#1
0
 private static void GotKeyboardFocusClass(Actor sender, KeyboardFocusChangedEventArgs e)
 {
     if (sender != null)
     {
         sender.OnGotKeyboardFocus(e);
     }
 }
示例#2
0
文件: Actor.cs 项目: jaquadro/MonoGdx
 private static void GotKeyboardFocusClass(Actor sender, KeyboardFocusChangedEventArgs e)
 {
     if (sender != null)
         sender.OnGotKeyboardFocus(e);
 }