I couldnt catch ctrl+space key event in winForm.But i wrote this code ((e.KeyCode==Keys.Space)&&(e.Modifiers==Keys.Control))
it didnt work.What is the problem?
[EDIT]sorry.problem is in another thing.It works.
I couldnt catch ctrl+space key event in winForm.But i wrote this code ((e.KeyCode==Keys.Space)&&(e.Modifiers==Keys.Control))
it didnt work.What is the problem?
[EDIT]sorry.problem is in another thing.It works.
Try
(e.Modifiers & Keys.Control == Keys.Control)
instead of(e.Modifiers==Keys.Control)