コード例 #1
0
 private void WindowKeyPressed(object sender, KeyPressedEventArgs args)
 {
     if (KeyPressed != null)
         KeyPressed(this, args);
 }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: JenekX/PasswordManager
 private void HookKeyPressed(object sender, KeyPressedEventArgs args)
 {
     if (Visible)
         Focus();
     else
         cmsTrayShow_Click(this, new EventArgs());
 }