I believe a similar question to this has been asked before but none of the solutions have worked for me. I have some code that needs to run when the CTRL button and the "+" button are both pressed. I made sure to set the KeyPreview field to true on the parent forum. I've tried putting the following event handlers in the control's class but none have worked for me so far. When I press any key, the event is not caught:
private void PreviewControl_OnKeyDown(object sender, KeyEventArgs e){}
protected override OnKeyDown(KeyEventArgs e){}
protected override bool ProcessCmdKey(ref Message msg, Keys keyData){}