NavigationService.NavigationStopped Événement

Définition

Se produit lorsque la méthode StopLoading() est appelée ou lorsqu'une nouvelle navigation est demandée pendant qu'une navigation est déjà en cours.

public:
 event System::Windows::Navigation::NavigationStoppedEventHandler ^ NavigationStopped;
public event System.Windows.Navigation.NavigationStoppedEventHandler NavigationStopped;
member this.NavigationStopped : System.Windows.Navigation.NavigationStoppedEventHandler 
Public Custom Event NavigationStopped As NavigationStoppedEventHandler 

Type d'événement

Exemples

L’exemple suivant montre comment gérer NavigationStopped.

void NavigationService_NavigationStopped(object sender, NavigationEventArgs e)
{
    this.progressStatusBarItem.Content = "Navigation stopped.";
}
Private Sub NavigationService_NavigationStopped(ByVal sender As Object, ByVal e As NavigationEventArgs)
    Me.progressStatusBarItem.Content = "Navigation stopped."
End Sub

Remarques

Vous gérez NavigationStopped si vous avez besoin de découvrir des informations pertinentes concernant la demande de navigation lors de l’arrêt du téléchargement. Ces informations sont disponibles à partir de l’objet NavigationEventArgs passé au NavigationStopped gestionnaire d’événements et incluent :

Notes

Lorsque NavigationService l’événement déclenche NavigationStopped, il déclenche Application.NavigationStopped également un événement sur l’objet Application .

S’applique à

Voir aussi