0 out of 5 rated this helpful - Rate this topic

How to: Stop a Page from Loading

This example shows how to call the StopLoading method to stop navigation to content before it has finished being downloaded.

StopLoading stops the download of the requested content, and causes the NavigationStopped event to be raised.


void navigateStopButton_Click(object sender, RoutedEventArgs e)
{
    this.StopLoading();
}


Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.