NavigationService.NavigationStopped Ereignis

Definition

Tritt ein, wenn die StopLoading()-Methode aufgerufen wird oder wenn eine neue Navigation angefordert wird, während eine aktuelle Navigation noch ausgeführt wird.

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 

Ereignistyp

Beispiele

Das folgende Beispiel zeigt, wie behandelt wird 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

Hinweise

Sie behandeln NavigationStopped , wenn Sie relevante Informationen zur Navigationsanforderung ermitteln müssen, wenn der Download beendet wird. Diese Informationen sind aus dem NavigationEventArgs -Objekt verfügbar, das an den NavigationStopped Ereignishandler übergeben wird, und umfassen Folgendes:

Hinweis

Wenn NavigationService ausgelöst NavigationStoppedwird, löst Application.NavigationStopped es auch ein Ereignis für das Application -Objekt aus.

Gilt für:

Weitere Informationen