How can I determine in KeyDown that Ctrl + Up was pressed.

private void listView1_KeyDown(object sender, KeyEventArgs e)
{
    if (e.KeyCode == Keys.Control && e.KeyCode == Keys.Up)
    {
        //do stuff
    }
}

can't work, because never both keys are pressed exactly in the same second. You always to at first the Ctrl and then the other one...

link|improve this question
feedback

7 Answers

You can check the modifiers of the KeyEventArgs like so:

private void listView1_KeyDown(object sender, KeyEventArgs e)
{
    if (e.KeyCode == Keys.Up && e.Modifiers == Keys.Control)
    {
        //do stuff
    }
}

MSDN reference

link|improve this answer
feedback

You can use the ModifierKeys property:

if (e.KeyCode == Keys.Up && (ModifierKeys & Keys.Control) == Keys.Control)
{
    // CTRL + UP was pressed
}

Note that the ModifierKeys value can be a combination of values, so if you want to detect that CTRL was pressed regardless of the state of the SHIFT or ALT keys, you will need to perform a bitwise comparison as in my sample above. If you want to ensure that no other modifiers were pressed, you should instead check for equality:

if (e.KeyCode == Keys.Up && ModifierKeys == Keys.Control)
{
    // CTRL + UP was pressed
}
link|improve this answer
feedback

From the MSDN page on KeyEventArgs:

if (e.KeyCode == Keys.F1 && (e.Alt || e.Control || e.Shift))
{
    ...
link|improve this answer
feedback

in the KeyEventArgs there are propartys Control, ALt, Shift that shows if these buttons are preseed Best Regards, iordan

link|improve this answer
feedback

None of these work for me. I'm trying to implement Ctrl-Tab (or Ctrl-A) in a combobox. What works is F1 or Ctrl-F1, but I don't want to use those. Here's the working code:

  private void cboProducts_KeyDown(object sender, KeyEventArgs e)

      if (e.KeyCode==Keys.F1  && e.Control) // works for F1
      {
          SendKeys.SendWait("{DOWN}");
      }

Why can't I do Ctrl-Tab or even Ctrl-A? Is there something about Combobox that won't allow tabs or letters?

link|improve this answer
feedback

You can try using the Keyboard object to detect the IsKeyDown property. Also, if you don't want the browser shortcut to over-ride you can set Handled property to true.But be careful when over-riding browser shortcuts as it could cause confusion.

private void Page_KeyDown(object sender, KeyEventArgs e)
{
    // If leftCtrl + T is pressed autofill username
    if (Keyboard.IsKeyDown(Key.T) && Keyboard.IsKeyDown(Key.LeftCtrl))
    {
        txtUser.Text = "My AutoFilled UserName";
        e.Handled = true;
    }
}
link|improve this answer
feedback

you have to remember the pressed keys (ie in a bool array). and set the position to 1 when its pressed (keydown) and 0 when up .

this way you can track more than one key. I suggest doing an array for special keys only

so you can do:

 if (e.KeyCode == Keys.Control)
 {
        keys[0] = true;
 }
// could do the same with alt/shift/... - or just rename keys[0] to ctrlPressed

if (keys[0] == true && e.KeyCode == Keys.Up)
 doyourstuff
link|improve this answer
feedback

Your Answer

 
or
required, but never shown