标签: uwp windows-store-apps win-universal-app
有没有办法检测UWP中的系统状态(睡眠,休眠,工作,机械关闭)?我找到了shutdownmanager类,但它没用。
答案 0 :(得分:3)
这些状态毫无意义。什么是工作或机械关闭?此外,当处于睡眠或休眠状态的操作系统时,应用程序无法使用CPU(它们未运行),因此您无法响应此状态。
如果您想要执行应用状态感知,则需要处理Application.Suspending和Resuming事件,并在OnLaunched中执行状态恢复。
Application.Suspending
Resuming
OnLaunched