PopupWindowManager.PopupShowing Event
In This Article
Occurs before a popup window is displayed.
Namespace: DevExpress.ExpressApp.Web
Assembly: DevExpress.ExpressApp.Web.v24.2.dll
NuGet Package: DevExpress.ExpressApp.Web
#Declaration
public event EventHandler<PopupShowingEventArgs> PopupShowing
#Event Data
The PopupShowing event's data class is PopupShowingEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Content |
Gets a URL that will be assigned to the ASPx |
Popup |
Gets the Xaf |
Show |
Gets the object providing access to the popup window’s source Action. |
Source |
Gets the parent Window for the current popup. |
#Remarks
You can handle this event to access the XafPopupWindowControl object. An example of using the PopupShowing event is provided in the How to: Adjust the Size and Style of Pop-up Dialogs (ASP.NET Web Forms) topic.
See Also