Application::Shutdown Method ()
Shuts down an application.
Assembly: PresentationFramework (in PresentationFramework.dll)
When Shutdown is called, an application stops running. You can handle the Exit event to detect when an application is about to stop running, to perform any appropriate processing.
Shutdown is implicitly called by Windows Presentation Foundation (WPF) in the following situations:
When ShutdownMode is set to OnLastWindowClose.
When the ShutdownMode is set to OnMainWindowClose.
When a user ends a session and the SessionEnding event is either unhandled, or handled without cancellation.
Calling Shutdown explicitly causes an application to shut down, regardless of the ShutdownMode setting. However, if ShutdownMode is set to OnExplicitShutdown, you must call Shutdown to shut down an application.
Important |
|---|
When Shutdown is called, the application will shut down irrespective of whether the Closing event of any open windows is canceled. |
This method can be called only from the thread that created the Application object.
for permission to use all windows and user input events without restriction. Associated enumeration: UIPermissionWindow::AllWindows
Available since 3.0
