PopupWindow(XafApplication, TemplateContext, ICollection<Controller>) Constructor
Creates a new PopupWindow.
Namespace: DevExpress.ExpressApp.Web
Assembly: DevExpress.ExpressApp.Web.v24.2.dll
NuGet Package: DevExpress.ExpressApp.Web
Declaration
public PopupWindow(
XafApplication application,
TemplateContext context,
ICollection<Controller> controllers
)
Parameters
Name | Type | Description |
---|---|---|
application | XafApplication | An XafApplication object that provides methods and properties to manage the current application. This value is assigned to the Frame.Application property. |
context | TemplateContext | A TemplateContext object representing the created Window’s context. This value is assigned to the Frame.Context property. |
controllers | ICollection<Controller> | A ICollection<Controller> Controllers collection. |
Remarks
The constructor is used to create and initialize a new PopupWindow The Controllers passed via the controllers parameter are registered within the created Window (see the Frame.RegisterController method description).
This method is not designed to be used directly from your code. The currently set View Strategy creates pop-up Windows automatically via the XafApplication.CreatePopupWindow method.