NavigationService.LoadCompleted Event
Occurs when content that was navigated to has been loaded, parsed, and has begun rendering.
Namespace: System.Windows.Navigation
Assembly: PresentationFramework (in PresentationFramework.dll)
You handle LoadCompleted if you need to discover pertinent information regarding the navigation request upon load completion. This information is available from the NavigationEventArgs object that is passed to the LoadCompleted event handler, and includes:
The content and its uniform resource identifier (URI).
The navigator (NavigationWindow, Frame).
Additional data, if the navigation was initiated by calling either Navigate or Navigate.
Response details (using a WebResponse object).
LoadCompleted is not raised when the source page could not be found or loaded, in which case NavigationFailed is raised.
Note |
|---|
When NavigationService raises LoadCompleted, it also raises Application.LoadCompleted event on the Application object. |
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note