Set the 'FormKeyPreview Property to 'false. Try this in the Form:
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
Console.WriteLine($"active control: {ActiveControl.Name} | key: {keyData}");
return base.ProcessCmdKey(ref msg, keyData);
}
Quote:
The ProcessCmdKey method first determines whether the control has a ContextMenu, and if so, enables the ContextMenu to process the command key. If the command key is not a menu shortcut and the control has a parent, the key is passed to the parent's ProcessCmdKey method. The net effect is that command keys are "bubbled" up the control hierarchy. In addition to the key the user pressed, the key data also indicates which, if any, modifier keys were pressed at the same time as the key. Modifier keys include the SHIFT, CTRL, and ALT keys.
[
^]