Share via


PowerManager.PowerSupplyStatusChanged イベント

定義

デバイスの電源の状態が変更されたときに発生します。

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

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

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

イベントの種類

注釈

このイベントに応答して現在の電源の状態を取得するには、 PowerSupplyStatus プロパティを使用します。

適用対象

こちらもご覧ください