Skip to main content
.NET Framework 4.6.2+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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