当用户第一次在 Windows Mobile 上安装应用程序时,我正在创建一些加密密钥来使用一些 web 服务对应用程序进行身份验证。
我遇到的问题是手机正在自动锁定并且任务被取消。我无法阻止它关闭。
我在 mainpage.xaml 加载中使用了它:
PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled;
甚至在 App.xaml 中:
private void Application_Launching(object sender, LaunchingEventArgs e)
{
PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled;
}
但它仍然无法正常工作。任何帮助,请,该任务大约需要 2 分钟。