Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我为 Windows Phone 8 制作了一个应用程序,该应用程序具有按三次锁定按钮的功能。我的问题是,一旦手机锁定屏幕,我希望我的应用程序在后台运行。我想不出一个“干净”的方法来做到这一点。我们可以在启用锁屏时运行后台应用程序吗?
以下代码将允许您的应用在锁定屏幕激活时继续运行:
PhoneApplicationService.Current.ApplicationIdleDetectionMode = IdleDetectionMode.Disabled;
MSDN