//Event fired when showHook is activated void shoHook_KeyPressed(object sender, KeyPressedEventArgs e) { Console.WriteLine("Show Hook Key Pressed"); this.Show(); this.Focus(); }
//Event fired when showHook is activated void hideHook_KeyPressed(object sender, KeyPressedEventArgs e) { Console.WriteLine("Hide Hook Key Pressed"); this.Hide(); }