Application.Current Property

Definition

Gets the Application object for the current application.

static Application Current();
public static Application Current { get; }
var application = Application.current;
Public Shared ReadOnly Property Current As Application

Property Value

The Application object for the current application.

Remarks

Application is a singleton that implements the static Current property to provide shared access to the Application instance for the current application. The singleton pattern ensures that state managed by Application, including shared resources and properties, is available from a single, shared location.

Applies to