Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.
  • The page you are viewing does not exist in the .NET Core 3.0+ platform documentation. This link will take you to the parent topic of the current section.

PopupWindow(XafApplication, TemplateContext, ICollection<Controller>) Constructor

Creates a new PopupWindow.

Namespace: DevExpress.ExpressApp.Web

Assembly: DevExpress.ExpressApp.Web.v19.2.dll

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.

See Also