Frame.Disposed Event
In This Article
Occures after the current Frame has been disposed of.
Namespace: DevExpress.ExpressApp
Assembly: DevExpress.ExpressApp.v24.2.dll
NuGet Package: DevExpress.ExpressApp
#Declaration
public event EventHandler Disposed
#Event Data
The Disposed event's data class is EventArgs.
#Remarks
This event is raised as a result of calling the Frame.Dispose method. This method releases all resources allocated by the current Frame and speeds up system performance. Handle this event to release custom resources after the Frame has been disposed of.
See Also