I'm currently trying to make a keydown register. Basicly just to see which keys i use the most. The problem is that only want it to detect the F1-F12 buttons. Another issue is don't really know how to attack it since it must be a globalevent.
if (e.KeyCode.ToString() == "F1")
{
MessageBox.Show("F1 pressed");
}
Is what I've been trying so far, I do have to focus the application for it to work tho.
I DO NOT want the user to register the hotkeys on their own. I want them set, that's what differs this from Set global hotkeys using C#