检测Ctrl +单击按钮并单击按钮

时间:2012-10-26 14:08:02

标签: c# visual-studio-2010

对于按钮,如何检测是否 ctrl +单击按钮,在单击事件处理程序中? 我使用的是使用C#的VS 2010。

1 个答案:

答案 0 :(得分:4)

我们在谈论winforms,wpf还是asp应用程序?我会快速假设它是winforms,所以这里是:

Form Form1;
button.Click += click;

private void click(object s, EventArgs e)
{
    if(Form1.ModifierKeys == Keys.Control)
    ... // Whatever you need here
}