NavigationService.StopLoading Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Met fin au téléchargement de contenu pour la requête de navigation en cours.
public:
void StopLoading();
public void StopLoading ();
member this.StopLoading : unit -> unit
Public Sub StopLoading ()
Exemples
L’exemple suivant montre comment arrêter le chargement.
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
Remarques
StopLoading peut être appelé dès que Navigate retourne et arrête la navigation en cours dans les images enfants.
(Frame).
L’appel de la StopLoading méthode déclenche l’événement NavigationStopped .
Notes
StopLoading doit être appelé sur le thread qui a lancé la navigation.