如何获取 .NET CF 3.5 中的当前电池电量?
如何(或者最好的方法是什么)在 Windows Mobile 5 和 6 上的 .NET CF 3.5 中检索设备的当前电池电量?
How - or what's the best way - to retrieve the device's current battery level in .NET CF 3.5 on Windows Mobile 5 and 6?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为您想要使用
Microsoft.WindowsMobile.Status
名称(特别是SystemState
类。请参阅 这篇文章获取完整的代码示例。
I think you want to use the
Microsoft.WindowsMobile.Status
namepsace (specifically theSystemState
class.See this post for the full code sample.
您可能需要 Nordorin 推荐的 State Notation Broker 类。 我认为它不会为您提供非常精细的信息。 您会得到诸如“低”或“非常低”之类的信息。 如果您需要特定百分比,请考虑使用 GetSystemPowerStatusEx。
如何:获取设备电源状态
GetSystemPowerStatusEx
You probably want the State Notification Broker class that Noldorin is recommending. I don't think it gives you very fine grain information. You get information like Low or Very Low. If you need specific percentages consider using GetSystemPowerStatusEx.
HOWTO: Get the Device Power Status
GetSystemPowerStatusEx
要添加到 CJ 的响应中,您可以找到如何从 http 获取详细电池信息的代码示例://www.codeproject.com/kb/mobile/Wimopower1.aspx。 这些信息包括电池的电量、温度、是否正在充电或正在放电以及消耗的电流量。
示例输出 http: //j2i.net/resized-image.ashx/__size/800x0/__key/CommunityServer.Blogs.Components.WeblogFiles/home/powerMeter.png
To add to CJ's response you can find a code example of how to get detailed battery information from http://www.codeproject.com/kb/mobile/Wimopower1.aspx . This information includes the batter's power level, temperature, whether it is charging or draining, and the amount of current being drawn.
Example Output http://j2i.net/resized-image.ashx/__size/800x0/__key/CommunityServer.Blogs.Components.WeblogFiles/home/powerMeter.png