Skip to main content
.NET 6.0+

PopupWindowShowAction(IContainer) Constructor

Creates a new Pop-up Window Show Action and initializes its container.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public PopupWindowShowAction(
    IContainer container
)

Parameters

Name Type Description
container IContainer

An object that includes members of the IContainer interface. This object is assigned to the ActionBase.Controller property.

Remarks

Currently, members of the IContainer interface are implemented in the Controller class only. So, the contianer parameter is used to initialize the ActionBase.Controller property of the created Pop-up Window Show Action.

Usually, you do not need to create PopupWindowShowAction objects manually. Instead, use the parent Controller’s Designer to add Actions. For details, refer to the Actions topic.

See Also