OnGotKeyboardFocus() 보호된 메소드

protected OnGotKeyboardFocus ( KeyboardFocusChangedEventArgs e ) : void
e KeyboardFocusChangedEventArgs
리턴 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);
 }