I have a code:
protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { switch (keyData) { case Keys.Alt|Ke
You use return in both conditions. So break could be easily removed.
But I prefer to leave it there in case you will change your code sometime.