是否可以在用户重置 Windows Phone 时收到通知

Is it possible to get notified when the user Reset the Windows Phone

我正在开发一个 windows phone 应用程序,它正在处理一些安全信息。

我的问题是

1)当用户重置(使 phone 刷新,所有数据都将丢失)windows phone.

有没有人对此有清楚的认识。

谢谢。 努鲁尔

没有。有一个支持的事件列表,其中 none 个是设备重置。恕我直言:即使您能够收听此类事件 - 这也是错误的方式。

如果您有重要数据要备份:

在您的应用被暂停时执行此操作!触发暂停后,您有大约 10 秒的时间来备份重要数据。

Application.Current.Suspending += new SuspendingEventHandler(App_Suspending);

async void App_Suspending(
    Object sender, 
    Windows.ApplicationModel.SuspendingEventArgs e)
{
    // TODO: This is the time to save app data in case the process is terminated
}

只需将其保存到漫游数据存储或文件夹中,重置后即可再次使用。

相当简单,只需要几行代码:

https://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh700362.aspx