让 Windows Mobile 6 手机保持活力

发布于 2024-08-28 14:07:10 字数 200 浏览 5 评论 0原文

我正在为 Windows Mobile 6.1 Pocket PC(触摸屏)制作一个应用程序。我知道当掌上电脑的屏幕关闭时,它会进入待机模式,并且应用程序几乎会在后台停止。我的应用程序无法做到这一点。它需要继续下去。所以我的问题是,如何在我的申请完成之前保持手机处于活动状态(背光打开)?

一个例子是视频流应用程序,例如 Youtube。它可以在视频播放时保持手机开机。

I am making an application for Windows Mobile 6.1 Pocket PC (Touchscreen). I know when a Pocket PC's screen turns off, it goes into a standby mode and applications are pretty much halted in the background. My application can't do that. It needs to keep going. So my question is, how can I keep the phone alive (backlight turned on) until my application is done?

An example of this would be video streaming applications such as Youtube. It keeps the phone on while the video is playing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

濫情▎り 2024-09-04 14:07:10

只要您的应用正在执行某些操作(在循环或计时器中),它就相对容易,您需要:

public static class CoreTools
{
    [DllImport("coredll.dll")]
    public static extern void SystemIdleTimerReset();
}

然后定期调用 SystemIdleTimerReset() 。

As long as your app is doing something (in a loop or a Timer) it is relatively easy, you need:

public static class CoreTools
{
    [DllImport("coredll.dll")]
    public static extern void SystemIdleTimerReset();
}

And then call SystemIdleTimerReset() regularly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文