Table of Contents

Method BubbleKeyAction

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

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

e T

Event arguments.

action Action<AbstractControl, T>

Action to call.

formActionBefore Action<Window, T>

Action to call for the parent window before all controls are notified.

formActionAfter Action<Window, T>

Action to call for the parent window after all controls are notified.

Type Parameters

T

Type of the event arguments.