コード例 #1
0
 private static void OnHotKeyPressed(HotKeyEventArgs e)
 {
     if (HotKeyManager.HotKeyPressed != null)
     {
         HotKeyManager.HotKeyPressed(null, e);
     }
 }
コード例 #2
0
 private static void OnHotKeyPressed(HotKeyEventArgs e)
 {
     if (HotKeyManager.HotKeyPressed != null)
     {
         e.CurrentGame = _currentGame;
         HotKeyManager.HotKeyPressed(null, e);
     }
 }