PowerManager.PowerSupplyStatusChanged 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在 PowerSupplyStatus 更改时发生。
// 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 */ }
Windows.System.Power.PowerManager.addEventListener("powersupplystatuschanged", onPowerSupplyStatusChanged);
Windows.System.Power.PowerManager.removeEventListener("powersupplystatuschanged", onPowerSupplyStatusChanged);
- or -
Windows.System.Power.PowerManager.onpowersupplystatuschanged = onPowerSupplyStatusChanged;
Public Shared Custom Event PowerSupplyStatusChanged As EventHandler(Of Object)