当电池寿命达到大约 10% 时自动重启 Windows Mobile
当电池寿命达到大约 10% 时,Windows Mobile 6.0 将关闭设备上的电话。因此,一旦电池寿命超过 10%,用户就不必重新打开手机,它应该会自动打开。任何机构都可以提供帮助吗:-
我们可以使用 .net 来实现这一点吗?如果可以,请提供示例代码或参考。 如何实现这个功能。
谢谢, 移动性
Windows Mobile 6.0 will switch the phone off on the device when the battery life gets to approximately 10%. So the user does not have to switch the phone back on once the battery life rises above 10%, it should be automatically. Can any body help on this:-
Can we achieve this using .net, if yes please provide sample code or reference.
How to achieve this functionality.
Thanks,
Mobility
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 TAPI 或 RIL 更改 GSM 或 CDMA 蜂窝无线电的功率。就 Win32 API 而言,这两个 API 都相当复杂。这些 API 可从 Pocket PC 2002 到 Windows Mobile 6.5.3 运行。可以从 .NET 使用这些 API,但您可能必须使用 Platform Invoke。
还有 SNAPI,它有一个托管包装器。此 API 需要 Windows Mobile 5 或更高版本。有关详细信息,请参阅 SystemProperty.PhoneRadioOff 枚举。
You can use TAPI or RIL to change the power of the GSM or CDMA cellular radio. Both API are pretty complex as far as Win32 API goes. These API will work from Pocket PC 2002 through Windows Mobile 6.5.3. It's possible to use these API from .NET but you will probably have to use Platform Invoke.
There is also the SNAPI, which has a managed wrapper. This API requires Windows Mobile 5 or later. See the SystemProperty.PhoneRadioOff enumeration for more information.