using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace ExampleAppNameSpace
{
public partial class ExampleAPP : Form
{
public List<hookType> KeyBoardHooks = new List<hookType>();
public Form1()
{
InitializeComponent();
globalShortcut.hookType hook = new globalShortcut.hookType("Hello_World";
hook.KeyPressed += new EventHandler(globalHotKey_Activated);
hook.RegisterHotKey(globalShortcut.ModifierKeys.Control, Keys.E);
this.KeyBoardHooks.Add(hook);
}
private void globalHotKey_Activated(object sender, globalShortcut.KeyPressedEventArgs e)
{
MessageBox.Show("Hello world from a globalShortcut!";
}
}
}