Skip to main content
.NET 6.0+

CustomizePopupWindowParamsEventArgs(PopupWindowShowAction, XafApplication) Constructor

Initializes a new instance of the CustomizePopupWindowParamsEventArgs class.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public CustomizePopupWindowParamsEventArgs(
    PopupWindowShowAction action,
    XafApplication application
)

Parameters

Name Type Description
action PopupWindowShowAction

An ActionBase object that represents the Popup Window Show Action whose execution has raised the PopupWindowShowAction.CustomizePopupWindowParams event. This parameter value is assigned to the CustomizePopupWindowParamsEventArgs.Action property.

application XafApplication

An XafApplication object that provides methods and properties to manage the current application. This value is assigned to the CustomizePopupWindowParamsEventArgs.Application property.

Remarks

Since instances of the CustomizePopupWindowParamsEventArgs class are automatically created and passed to handlers of the PopupWindowShowAction.CustomizePopupWindowParams event, you do not need to call this constructor from your application.

See Also