c# - Is there a form Level Method or Event that fires after the keyDown event of focused control not before? -


the following method occurs before event parsed focused control.

  protected override bool processcmdkey(ref message msg, keys keydata)     {         return base.processcmdkey(ref msg, keydata);     } 

i want exact opposite of method, meant want method or event occurs after child control's keydown event.

any reason not store response, work allow response bubble?

protected override bool processcmdkey(ref message msg, keys keydata) {     var ret = base.processcmdkey(ref msg, keydata);     dosomething();         return ret; } 

if needs be, dosomething() method can take msg, keydata , return value base.processcmdkey. depends need it.

if that's no quite want, you'll need explain "just after" little better. how long after?


Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -