Skip to main content
.NET 8.0+

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

HandleExceptionEventArgs Class

Arguments passed to the WinWindow.CustomHandleExceptionOnClosing event.

Namespace: DevExpress.ExpressApp.Actions

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public class HandleExceptionEventArgs :
    HandledEventArgs

#Remarks

The CustomHandleExceptionOnClosing event occurs when an exception is triggered while a WinWindow is being closed. You can handle this event to manually process an exceptional situation. The CustomHandleExceptionEventArgs.Exception property specifies the original exception. Perform the actions required to correct it and set the Handled argument passed into the event handler to true, to suppress the original exception.

#Inheritance

Object
EventArgs
HandledEventArgs
HandleExceptionEventArgs
See Also