How to detect combination of multiple modifier and

2019-08-08 12:36发布

I have tried different solutions given here for the question, but couldn't seem to get around it. I want to detect ShiftCtrlC in a KeyDown event in VB.Net.

The KeyPreview property is set to true for my form.

What I tried is:

If e.Modifiers = (Keys.Shift And Keys.Control) And e.KeyCode = Keys.C Then
    'do the action
End If

Any help would be much appreciated!

1条回答
女痞
2楼-- · 2019-08-08 12:52

The comment to your question is correct:

If (e.KeyCode = Keys.C AndAlso e.Modifiers = (Keys.Control Or Keys.Shift)) Then
    'Do what you want here
End If

If you would like this to happen anywhere on your form, you need to put the KeyPreview of your Form to True.

You can then put it in the Form_KeyDown

查看更多
登录 后发表回答