I am trapping a KeyDown
event and I need to be able to check whether the current keys pressed down are : Ctrl + Shift + M ?
I know I need to use the e.KeyData
from the KeyEventArgs
, the Keys
enum and something with Enum Flags and bits but I'm not sure on how to check for the combination.