Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
3/29/2010

Event that is raised when the state changes.

Namespace:Microsoft.WindowsMobile.Status
Assembly:Microsoft.WindowsMobile.Status (in microsoft.windowsmobile.status.dll)

Syntax

Example

The following example shows how to enable the Changed event to be raised when the battery strength changes:

Copy Code
SystemState batteryStrength = new
SystemState(SystemProperty.PowerBatteryStrength);

private void Form1_Load(object sender, EventArgs e)
{
	batteryStrength.Changed += new
ChangeEventHandler(batteryStrength_Changed);
}

void batteryStrength_Changed(object sender, ChangeEventArgs args)
{
	 BatteryLevel batteryLevel = (BatteryLevel)args.NewValue;
}

Remarks

This event will be raised only during the lifetime of the SystemState object.


See Also