Application.Current Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the Application object for the current AppDomain.
public:
static property System::Windows::Application ^ Current { System::Windows::Application ^ get(); };
public static System.Windows.Application Current { get; }
static member Current : System.Windows.Application
Public Shared ReadOnly Property Current As Application
Property Value
The Application object for the current AppDomain.
Remarks
Application is a per-AppDomain singleton type that implements the static Current property to provide shared access to the Application instance for the current AppDomain. This design guarantees that state managed by Application, including shared resources and state, is available from a single, shared location.
This property is thread safe and is available from any thread.