NavigationService.StopLoading 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
停止為目前的巡覽要求進一步下載內容。
public:
void StopLoading();
public void StopLoading ();
member this.StopLoading : unit -> unit
Public Sub StopLoading ()
範例
下列範例示範如何停止載入。
void stopButton_Click(object sender, RoutedEventArgs e)
{
this.NavigationService.StopLoading();
}
Private Sub stopButton_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
Me.NavigationService.StopLoading()
End Sub
備註
StopLoading 可以在傳回時 Navigate 立即呼叫,並停止子框架進行中的導覽。
(Frame).
呼叫 方法會 StopLoadingNavigationStopped 引發 事件。
注意
StopLoading 必須在起始導覽的相同執行緒上呼叫。