C#: Getting the correct keys pressed from KeyEventArgs' KeyData

后端 未结 3 527
闹比i
闹比i 2021-02-04 21:01

I am trapping a KeyDown event and I need to be able to check whether the current keys pressed down are : Ctrl + Shift + M ?

<
3条回答
  •  野性不改
    2021-02-04 21:52

    You need to use the Modifiers property of the KeyEventArgs class.

    Something like:

    //asumming e is of type KeyEventArgs (such as it is 
    // on a KeyDown event handler
    // ..
    bool ctrlShiftM; //will be true if the combination Ctrl + Shift + M is pressed, false otherwise
    
    ctrlShiftM = ((e.KeyCode == Keys.M) &&               // test for M pressed
                  ((e.Modifiers & Keys.Shift) != 0) &&   // test for Shift modifier
                  ((e.Modifiers & Keys.Control) != 0));  // test for Ctrl modifier
    if (ctrlShiftM == true)
    {
        Console.WriteLine("[Ctrl] + [Shift] + M was pressed");
    }
    

提交回复
热议问题