NavigationService.NavigationStopped 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
當呼叫 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 事件處理常式的物件取得,並包含:
要求的 URI。
導覽器 (NavigationWindow , Frame) 。
如果流覽是藉由呼叫 NavigationService.Navigate 或 NavigationService.Navigate 來起始其他資料。
注意
當 引發 NavigationStopped 時 NavigationService ,也會在 物件上 Application 引發 Application.NavigationStopped 事件。