I am trapping a KeyDown event and I need to be able to check whether the current keys pressed down are : Ctrl + Shift + M ?
KeyDown
You can check using a technique similar to the following:
if(Control.ModifierKeys == Keys.Control && Control.ModifierKeys == Keys.Shift)
This in combination with the normal key checks will give you the answer you seek.