Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 4
 LoadCompleted Event
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2010/.NET Framework 4

Other versions are also available for the following:
.NET Framework Class Library
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)
Visual Basic
Public Event LoadCompleted As LoadCompletedEventHandler
C#
public event LoadCompletedEventHandler LoadCompleted
Visual C++
public:
 event LoadCompletedEventHandler^ LoadCompleted {
    void add (LoadCompletedEventHandler^ value);
    void remove (LoadCompletedEventHandler^ value);
}
F#
member LoadCompleted : IEvent<LoadCompletedEventHandler,
    NavigationEventArgs>

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:

LoadCompleted is not raised when the source page could not be found or loaded, in which case NavigationFailed is raised.

NoteNote

When NavigationService raises LoadCompleted, it also raises Application..::.LoadCompleted event on the Application object.

The following example shows how to handle LoadCompleted.

Visual Basic
Private Sub NavigationService_LoadCompleted(ByVal sender As Object, ByVal e As NavigationEventArgs)
    Dim msg As String = String.Format("{0} loaded.", e.Uri.OriginalString)
    Me.progressStatusBarItem.Content = msg
End Sub
C#
void NavigationService_LoadCompleted(object sender, NavigationEventArgs e)
{
    string msg = string.Format("{0} loaded.", e.Uri.OriginalString);
    this.progressStatusBarItem.Content = msg;
}

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker