コード例 #1
0
ファイル: Home.cs プロジェクト: jecel0911/TimeTracker-win
 //Event fired when showHook is activated
 void shoHook_KeyPressed(object sender, KeyPressedEventArgs e)
 {
     Console.WriteLine("Show Hook Key Pressed");
     this.Show();
     this.Focus();
 }
コード例 #2
0
ファイル: Home.cs プロジェクト: jecel0911/TimeTracker-win
 //Event fired when showHook is activated
 void hideHook_KeyPressed(object sender, KeyPressedEventArgs e)
 {
     Console.WriteLine("Hide Hook Key Pressed");
     this.Hide();
 }