NavigationService.StopLoading 方法

定义

停止为当前导航请求下载更多内容。

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).

StopLoading调用 方法会NavigationStopped引发 事件。

注意

StopLoading 必须在启动导航的同一线程上调用。

适用于

另请参阅