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);
 }