在Windows Phone C#/ XAML应用中,可以在Application_Activated
中的App.xaml.cs
方法中检测到墓碑后恢复:
private void Application_Activated(object sender, ActivatedEventArgs e)
{
if (!e.IsApplicationInstancePreserved)
{
// we were tombstoned!
}
}
如何在Windows Phone HTML / Javascript应用中检测到它?
答案 0 :(得分:0)
为resuming事件添加事件监听器(在WP8.1上,您将在恢复事件后获得activated事件。
Windows.UI.WebUI.WebUIApplication.addEventListener("resuming", resumingHandler, false);
有关详细信息,请参阅MSDN的How to resume an app (HTML)。