Vote count:
0
Please I want to handle the key pressed and perform another key operation. Example if enter key is pressed then down event occurs. below is my code.
void khook_KeyDown(object sender, KeyboardEventArgs e)
{
if (!((e.KeyValue > 95 && e.KeyValue < 112) || (e.KeyValue == 144) || (e.KeyValue == 13)))
{
e.Handled = true;
}
else if (((e.Handled == false) & (e.KeyValue == 13)))
{
// change key pressed
}
}
void khook_KeyUp(object sender, KeyboardEventArgs e)
{
if (!((e.KeyValue > 95 && e.KeyValue < 112) || (e.KeyValue == 144) || (e.KeyValue == 13)))
e.Handled = true;
asked 16 secs ago
Aucun commentaire:
Enregistrer un commentaire