Compartilhar via


PowerManager.PowerSourceKindChanged Evento

Definição

Gerado quando a fonte de energia do dispositivo é alterada.

// Register
static event_token PowerSourceKindChanged(EventHandler<IInspectable> const& handler) const;

// Revoke with event_token
static void PowerSourceKindChanged(event_token const* cookie) const;

// Revoke with event_revoker
static PowerManager::PowerSourceKindChanged_revoker PowerSourceKindChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> PowerSourceKindChanged;
function onPowerSourceKindChanged(eventArgs) { /* Your code */ }
Microsoft.Windows.System.Power.PowerManager.addEventListener("powersourcekindchanged", onPowerSourceKindChanged);
Microsoft.Windows.System.Power.PowerManager.removeEventListener("powersourcekindchanged", onPowerSourceKindChanged);
- or -
Microsoft.Windows.System.Power.PowerManager.onpowersourcekindchanged = onPowerSourceKindChanged;
Public Shared Custom Event PowerSourceKindChanged As EventHandler(Of Object) 

Tipo de evento

Comentários

Para obter a fonte de energia atual do dispositivo em resposta a esse evento, use a propriedade PowerSourceKind. Esse evento corresponde ao GUID de configuração de energia GUID_ACDC_POWER_SOURCE.

Aplica-se a

Confira também