如何 - 或者最好的方法 - 在Windows Mobile 5和6上检索.NET CF 3.5中设备的当前电池电量?
我想你想使用Microsoft.WindowsMobile.Status
namepsace(特别是SystemState
类.
using Microsoft.WindowsMobile.Status; ... BatteryLevel batteryLevel = SystemState.PowerBatteryStrength; BatteryState batteryState = SystemState.PowerBatteryState;
有关完整的代码示例,请参阅此帖子.