The following method occurs before the event parsed to focused control.
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
return base.ProcessCmdKey(ref msg, keyData);
}
I want the exact opposite of this method, I meant I want a method or an event which occurs just after the child control's KeyDown
event.
Any reason not to just store the response, do your work then allow the response to bubble?
If needs be, your
DoSomething()
method can takemsg
,keyData
and even the return value frombase.ProcessCmdKey
. Depends what you need to do with it.If that's no quite what you want, you'll need to explain "just after" a little better. How long after?