CoreApplication.EnteredBackground Événement
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.
Déclenché lorsque l’application entre dans l’état en cours d’exécution en arrière-plan.
// Register
static event_token EnteredBackground(EventHandler<EnteredBackgroundEventArgs> const& handler) const;
// Revoke with event_token
static void EnteredBackground(event_token const* cookie) const;
// Revoke with event_revoker
static CoreApplication::EnteredBackground_revoker EnteredBackground(auto_revoke_t, EventHandler<EnteredBackgroundEventArgs> const& handler) const;
public static event System.EventHandler<EnteredBackgroundEventArgs> EnteredBackground;
function onEnteredBackground(eventArgs) { /* Your code */ }
Windows.ApplicationModel.Core.CoreApplication.addEventListener("enteredbackground", onEnteredBackground);
Windows.ApplicationModel.Core.CoreApplication.removeEventListener("enteredbackground", onEnteredBackground);
- or -
Windows.ApplicationModel.Core.CoreApplication.onenteredbackground = onEnteredBackground;
Public Shared Custom Event EnteredBackground As EventHandler(Of EnteredBackgroundEventArgs)
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
Cet événement est déclenché lorsque votre application n’est plus visible au premier plan.
Auparavant, votre rappel de suspension était le meilleur endroit pour enregistrer l’état après qu’un utilisateur a terminé une session avec votre application. Toutefois, une application peut maintenant continuer à s’exécuter en arrière-plan, puis revenir au premier plan en raison d’une activité de déclenchement sans jamais atteindre l’état suspendu. Le meilleur endroit pour enregistrer des données après une session utilisateur se trouve dans votre gestionnaire d’événements d’arrière-plan entré.
Les limites de mémoire changent également à mesure qu’une application se déplace en arrière-plan. Il est préférable d’case activée memoryManager et de libérer de la mémoire si nécessaire pour vous assurer que votre application ne soit pas arrêtée.