Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 4
 Navigated 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..::.Navigated Event

Occurs when the content that is being navigated to has been found, and is available from the Content property, although it may not have completed loading.

Namespace:  System.Windows.Navigation
Assembly:  PresentationFramework (in PresentationFramework.dll)
Visual Basic
Public Event Navigated As NavigatedEventHandler
C#
public event NavigatedEventHandler Navigated
Visual C++
public:
 event NavigatedEventHandler^ Navigated {
    void add (NavigatedEventHandler^ value);
    void remove (NavigatedEventHandler^ value);
}
F#
member Navigated : IEvent<NavigatedEventHandler,
    NavigationEventArgs>

You handle Navigated if you need to discover pertinent information regarding the navigation request when downloading commences. This information is available from the NavigationEventArgs object that is passed to the Navigated event handler, and includes:

  • The source page. When Navigated is raised, at least part of the source page's user interface (UI) tree has been parsed, and attached to target content control.

  • The requested 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).

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

NoteNote

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

The following example shows how to handle Navigated.

Visual Basic
Private Sub NavigationService_Navigated(ByVal sender As Object, ByVal e As NavigationEventArgs)
    Dim msg As String = String.Format("Downloading {0}.", e.Uri.OriginalString)
    Me.progressStatusBarItem.Content = msg
End Sub
C#
void NavigationService_Navigated(object sender, NavigationEventArgs e)
{
    string msg = string.Format("Downloading {0}.", 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