Skip to main content
.NET 6.0+

WindowTemplateController.CustomizeWindowStatusMessages Event

Occurs when the Window status messages collection is updated. Allows you to modify the Window status messages collection.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public event EventHandler<CustomizeWindowStatusMessagesEventArgs> CustomizeWindowStatusMessages

Event Data

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

Property Description
StatusMessages The collection of strings representing the Window status messages.

Remarks

The WindowTemplateController event is raised before setting the Window status messages collection. Handle this event in a custom Window Controller, to modify Window status messages. Refer to the How to: Customize Window Status Messages (WinForms) topic, for details.

Note

You can use the WindowTemplateController.UpdateWindowStatusMessage method to refresh the Window status messages.

See Also