Skip to main content
A newer version of this page is available. .

PopupWindowShowAction(Controller, String, String) Constructor

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

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public PopupWindowShowAction(
    Controller owner,
    string id,
    string category
)

Parameters

Name Type Description
owner Controller

A Controller object that represents a Controller to which the created Pop-up Window Show Action is added. This object is assigned to the ActionBase.Controller property.

id String

A string value representing the created Pop-up Window Show Action’s identifier. This value is assigned to the ActionBase.Id property.

category String

A string value that represents a category of the created Pop-up Window Show Action. This value is assigned to the ActionBase.Category property and used to map this Action to the appropriate Action Container.

Remarks

Via this method, a Pop-up Window Show Action is created and added to the Controller specified by the owner parameter.

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