CoreApplication.LeavingBackground Evento

Definizione

Generato appena prima che l'interfaccia utente dell'applicazione diventi visibile.

// 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) 

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

In precedenza la posizione migliore per caricare l'interfaccia utente è stata attivata o ripresa del gestore eventi. Ora il gestore per l'evento LeavingBackground è il posto migliore per eseguire i controlli finali per assicurarsi che l'interfaccia utente sia pronta per la presentazione. È importante controllare che gli asset visivi siano pronti a partire da questo momento perché questa è l'ultima opportunità per farlo prima che la tua applicazione sia visibile all'utente.

Si applica a

Vedi anche