1. 禁止自动锁屏
PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled;
2.锁屏状态后台运行
PhoneApplicationService.Current.ApplicationIdleDetectionMode = IdleDetectionMode.Disabled;
以上两条在App构造函数中加载为宜。
1. 禁止自动锁屏
PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled;
2.锁屏状态后台运行
PhoneApplicationService.Current.ApplicationIdleDetectionMode = IdleDetectionMode.Disabled;
以上两条在App构造函数中加载为宜。