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)

其他提示

Here is my suggestion:

if (e.KeyData.HasFlag(Keys.Space) && e.KeyData.HasFlag(Keys.Control))
{
    // DoSomething
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top