PowerManager.RemainingChargePercentChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando cambia RemainingChargePercent .
// Register
static event_token RemainingChargePercentChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
static void RemainingChargePercentChanged(event_token const* cookie) const;
// Revoke with event_revoker
static PowerManager::RemainingChargePercentChanged_revoker RemainingChargePercentChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> RemainingChargePercentChanged;
function onRemainingChargePercentChanged(eventArgs) { /* Your code */ }
Windows.System.Power.PowerManager.addEventListener("remainingchargepercentchanged", onRemainingChargePercentChanged);
Windows.System.Power.PowerManager.removeEventListener("remainingchargepercentchanged", onRemainingChargePercentChanged);
- or -
Windows.System.Power.PowerManager.onremainingchargepercentchanged = onRemainingChargePercentChanged;
Public Shared Custom Event RemainingChargePercentChanged As EventHandler(Of Object)