Application.Shutdown Method (System.Windows)

Switch View :
ScriptFree
.NET Framework Class Library
Application.Shutdown Method

Shuts down an application.

Namespace:  System.Windows
Assembly:  PresentationFramework (in PresentationFramework.dll)
Syntax

Visual Basic (Declaration)
Public Sub Shutdown
Visual Basic (Usage)
Dim instance As Application

instance.Shutdown()
C#
public void Shutdown()
Visual C++
public:
void Shutdown()
JScript
public function Shutdown()
XAML
You cannot use methods in XAML.
Remarks

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:

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 note Important Note:

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.

The Application Shutdown Sample shows both implicit and explicit use of Shutdown to shut down an application, and how the Closing event of a Windows is ignored.

.NET Framework Security

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0
See Also

Reference

Run
Run