Back to Devexpress

CustomizePopupWindowParamsEventHandler Delegate

expressappframework-devexpress-dot-expressapp-dot-actions-de616ea4.md

latest1.8 KB
Original Source

CustomizePopupWindowParamsEventHandler Delegate

Represents a method that will handle the PopupWindowShowAction.CustomizePopupWindowParams event.

Namespace : DevExpress.ExpressApp.Actions

Assembly : DevExpress.ExpressApp.v25.2.dll

NuGet Package : DevExpress.ExpressApp

Declaration

csharp
public delegate void CustomizePopupWindowParamsEventHandler(
    object sender,
    CustomizePopupWindowParamsEventArgs e
);
vb
Public Delegate Sub CustomizePopupWindowParamsEventHandler(
    sender As Object,
    e As CustomizePopupWindowParamsEventArgs
)

Parameters

NameType
senderObject
eCustomizePopupWindowParamsEventArgs

Remarks

When creating a CustomizePopupWindowParamsEventHandler delegate, you identify the method that will handle the corresponding event. To associate an event with your event handler, add a delegate instance to this event. The event handler is called whenever the event occurs unless you remove the delegate. For more information on event handler delegates, see Handling and Raising Events.

See Also

DevExpress.ExpressApp.Actions Namespace