NavigatedEventHandler Delegate
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Represents the method that will handle the Navigated event.
Namespace: System.Windows.Navigation
Assembly: System.Windows (in System.Windows.dll)
Syntax
'Declaration
<TypeForwardedFromAttribute("System.Windows.Controls.Navigation, Version=2.0.5.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")> _
Public Delegate Sub NavigatedEventHandler ( _
sender As Object, _
e As NavigationEventArgs _
)
[TypeForwardedFromAttribute("System.Windows.Controls.Navigation, Version=2.0.5.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")]
public delegate void NavigatedEventHandler(
Object sender,
NavigationEventArgs e
)
Parameters
- sender
Type: System.Object
The source of the event.
- e
Type: System.Windows.Navigation.NavigationEventArgs
The data for the event.
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also