CoreApplication.Resuming É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.
Se produit lorsqu’une application reprend.
// Register
static event_token Resuming(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
static void Resuming(event_token const* cookie) const;
// Revoke with event_revoker
static CoreApplication::Resuming_revoker Resuming(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> Resuming;
function onResuming(eventArgs) { /* Your code */ }
Windows.ApplicationModel.Core.CoreApplication.addEventListener("resuming", onResuming);
Windows.ApplicationModel.Core.CoreApplication.removeEventListener("resuming", onResuming);
- or -
Windows.ApplicationModel.Core.CoreApplication.onresuming = onResuming;
Public Shared Custom Event Resuming As EventHandler(Of Object)
Type d'événement
Remarques
Windows Phone 8
Cette API est prise en charge uniquement dans les applications natives.