Application.EnteredBackground Evento

Definizione

Si verifica quando l'app passa in primo piano allo sfondo.

public:
 virtual event EnteredBackgroundEventHandler ^ EnteredBackground;
// Register
event_token EnteredBackground(EnteredBackgroundEventHandler const& handler) const;

// Revoke with event_token
void EnteredBackground(event_token const* cookie) const;

// Revoke with event_revoker
Application::EnteredBackground_revoker EnteredBackground(auto_revoke_t, EnteredBackgroundEventHandler const& handler) const;
public event EnteredBackgroundEventHandler EnteredBackground;
function onEnteredBackground(eventArgs) { /* Your code */ }
application.addEventListener("enteredbackground", onEnteredBackground);
application.removeEventListener("enteredbackground", onEnteredBackground);
- or -
application.onenteredbackground = onEnteredBackground;
Public Custom Event EnteredBackground As EnteredBackgroundEventHandler 

Tipo evento

Requisiti Windows

Famiglia di dispositivi
Windows 10 Anniversary Edition (è stato introdotto in 10.0.14393.0)
API contract
Windows.Foundation.UniversalApiContract (è stato introdotto in v3.0)

Commenti

Questo evento viene attivato quando l'utente passa dall'app. È possibile eseguire un numero limitato di tempo per un gestore eventi per questo evento.

Quando l'app passa allo stato in background, possono cambiare i vincoli di memoria imposti dal sistema. Usare questo evento per controllare il consumo di memoria corrente e le risorse gratuite per rimanere al di sotto del limite in modo che l'app non venga sospesa e eventualmente terminata mentre è in background. Per altre informazioni, vedere Memoria gratuita quando l'app si sposta in background .

L'evento EnteredBackground viene eseguito nell'appartamento in cui è stato registrato.

Si applica a

Vedi anche