我需要像“Shift+Insert”一样同时捕获多个键,如何使用 System.Windows.Input.KeyEventArgs 来使用它。我写了一些代码,但它不起作用:
private void Grid1KeyUp(object sender, KeyEventArgs e)
{
if (e.Key == System.Windows.Input.Key.Shift && e.Key == System.Windows.Input.Key.Insert)
{
//do something
}
}
有人可以帮我吗?
注意:在 silverlight 项目中,您不能使用“System.Windows.Forms”。