Represents the event information for a Navigated event.
Inheritance: System.EventArgs
Exemplo n.º 1
0
 /// <summary>
 /// Raises the Navigated event.
 /// </summary>
 /// <param name="e">The data associated with the event.</param>
 protected virtual void OnNavigated(NavigatedEventArgs e)
 {
     if (_navigatedHandler != null) {
         _navigatedHandler(this, e);
     }
 }