is there any way to check what keys pressed from anywhere of Windows form?
I have tried make it with Events(KeyDown)
if(e.KeyCode==Keys.F5)
{
search();
}
if(e.KeyCode==Keys.F2)
{
save();
} // and more ...
But i want know is there any easy way to check what keys is pressed from any where of Windows form?
It's take time to make all objects Events(KeyDown).