Skip to main content
.NET 6.0+

PopupWindowShowActionExecuteEventArgs(ActionBase, ISelectionContext, Window) Constructor

Creates a new instance of the PopupWindowShowActionExecuteEventArgs class and initializes its properties.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public PopupWindowShowActionExecuteEventArgs(
    ActionBase action,
    ISelectionContext context,
    Window window
)

Parameters

Name Type Description
action ActionBase

An ActionBase object that represents the Action whose execution has raised the PopupWindowShowAction.Execute event. This parameter value is assigned to the ActionBaseEventArgs.Action property.

context DevExpress.ExpressApp.ISelectionContext

An instance of the class that implements the ISelectionContext interface. This parameter value is used to specify the SimpleActionExecuteEventArgs.SelectedObjects and SimpleActionExecuteEventArgs.CurrentObject properties.

window Window

A Window object that represents the current Pop-up Window Show Action’s pop-up Window.

Remarks

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

See Also