Method BubbleKeyAction
BubbleKeyAction<T>(T, Action<AbstractControl, T>, Action<Window, T>?, Action<Window, T>?)
Bubbles specified key event action with arguments.
public virtual void BubbleKeyAction<T>(T e, Action<AbstractControl, T> action, Action<Window, T>? formActionBefore = null, Action<Window, T>? formActionAfter = null) where T : HandledEventArgs
Parameters
eTEvent arguments.
actionAction<AbstractControl, T>Action to call.
formActionBeforeAction<Window, T>Action to call for the parent window before all controls are notified.
formActionAfterAction<Window, T>Action to call for the parent window after all controls are notified.
Type Parameters
TType of the event arguments.