Compartir a través de


PowerManager.SystemIdleStatusChanged Evento

Definición

Se genera cuando el sistema está ocupado. Esto indica que el sistema no se moverá a un estado de inactividad en el futuro próximo y que la hora actual es un buen momento para que los componentes realicen tareas en segundo plano o inactivas que, de lo contrario, impidan que el equipo entre en un estado inactivo.

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

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

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

Tipo de evento

Comentarios

No hay ninguna notificación cuando el sistema puede moverse a un estado inactivo. La notificación de tareas en segundo plano inactiva no indica si un usuario está presente en el equipo.

Este evento corresponde al GUID de configuración de energía de GUID_IDLE_BACKGROUND_TASK.

Se aplica a

Consulte también