Partager via


CoreApplication.LeavingBackground Événement

Définition

Déclenché juste avant que l’interface utilisateur de l’application ne devienne visible.

// Register
static event_token LeavingBackground(EventHandler<LeavingBackgroundEventArgs> const& handler) const;

// Revoke with event_token
static void LeavingBackground(event_token const* cookie) const;

// Revoke with event_revoker
static CoreApplication::LeavingBackground_revoker LeavingBackground(auto_revoke_t, EventHandler<LeavingBackgroundEventArgs> const& handler) const;
public static event System.EventHandler<LeavingBackgroundEventArgs> LeavingBackground;
function onLeavingBackground(eventArgs) { /* Your code */ }
Windows.ApplicationModel.Core.CoreApplication.addEventListener("leavingbackground", onLeavingBackground);
Windows.ApplicationModel.Core.CoreApplication.removeEventListener("leavingbackground", onLeavingBackground);
- or -
Windows.ApplicationModel.Core.CoreApplication.onleavingbackground = onLeavingBackground;
Public Shared Custom Event LeavingBackground As EventHandler(Of LeavingBackgroundEventArgs) 

Type d'événement

Configuration requise pour Windows

Famille d’appareils
Windows 10 Anniversary Edition (introduit dans 10.0.14393.0)
API contract
Windows.Foundation.UniversalApiContract (introduit dans v3.0)

Remarques

Auparavant, le meilleur emplacement pour charger l’interface utilisateur était dans votre gestionnaire d’événements activé ou en cours de reprise. À présent, votre gestionnaire pour l’événement LeavingBackground est le meilleur endroit pour effectuer vos vérifications finales afin de vous assurer que l’interface utilisateur est prête pour la présentation. Il est important de vérifier que les ressources visuelles sont prêtes à ce moment-là, car c’est la dernière occasion de faire le travail avant que votre application ne s’affiche à l’utilisateur.

S’applique à

Voir aussi