WinWindow.CustomHandleExceptionOnClosing Event
Occurs when an exception is triggered while the WinWindow is being closed.
Namespace: DevExpress.ExpressApp.Win
Assembly: DevExpress.ExpressApp.Win.v24.2.dll
NuGet Packages: DevExpress.ExpressApp.Win, DevExpress.ExpressApp.Win.Design
#Declaration
public event EventHandler<HandleExceptionEventArgs> CustomHandleExceptionOnClosing
#Event Data
The CustomHandleExceptionOnClosing event's data class is HandleExceptionEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Exception |
Specifies an exception triggered while a Win |
Handled |
Gets or sets a value that indicates whether the event handler has completely handled the event or whether the system should continue its own processing.
Inherited from Handled |
#Remarks
Handle this event to manually process an exceptional situation occurring while the Window is being closed. 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.