Skip to main content

WindowTemplateController.CustomizeWindowCaption Event

Occurs before the Window caption is updated. Allows you to change the Window caption.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v25.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public event EventHandler<CustomizeWindowCaptionEventArgs> CustomizeWindowCaption

Event Data

The CustomizeWindowCaption event's data class is CustomizeWindowCaptionEventArgs. The following properties provide information specific to this event:

Property Description
WindowCaption Represents a Window caption.

Remarks

The CustomizeWindowCaption event is raised before setting the Window caption text. Handle this event in a custom Window Controller, to modify a Window caption. In Blazor application, this event affects only the browser window’s caption. Refer to the How to: Customize a Window Caption topic, for details.

Note

You can use the WindowTemplateController.UpdateWindowCaption method to refresh the Window caption.

See Also