NavigationService.NavigationStopped 이벤트

정의

StopLoading() 메서드가 호출되거나 현재 탐색이 진행되는 동안 새 탐색이 요청될 때 발생합니다.

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 

이벤트 유형

예제

다음 예제에서는 처리 하는 방법을 보여 줍니다 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

설명

처리 NavigationStopped 다운로드를 중지할 때 탐색 요청에 대 한 관련 정보를 검색 해야 합니다. 이 정보를 확인할 합니다 NavigationEventArgs 에 전달 되는 개체는 NavigationStopped 이벤트 처리기를 포함:

참고

NavigationService 발생 NavigationStopped, 발생 Application.NavigationStopped 이벤트에는 Application 개체입니다.

적용 대상

추가 정보