Windows Phone:当应用程序在睡眠/手机锁定后唤醒时转发到不同的屏幕

时间:2013-03-19 12:24:26

标签: windows-phone-7 windows-phone-7.1 sleep tombstoning

我开发了一个Windows Phone 7应用程序,当用户在运行应用程序时锁定手机,当手机解锁时应用程序必须将用户转发到另一个.xmal页面。

原因是应用程序显示敏感信息。因此,如果用户在应用程序中间锁定他/她的手机并将其留在桌面上,则没有人可以来解锁手机并查看敏感信息。

所以我想将用户转发到我已经创建的“输入引脚”页面。

提前致谢!

2 个答案:

答案 0 :(得分:1)

阅读app activation and deactivation flow。在这种情况下,您需要在应用程序激活事件中处理用户的所有准备工作,该事件是在将应用程序从休眠状态推送到活动状态时触发的。

答案 1 :(得分:1)

// Code to execute when the application is activated (brought to foreground)
// This code will not execute when the application is first launched
private void Application_Activated(object sender, ActivatedEventArgs e)
{
    this.AddEventLogItem("Application Activated event");
    // load application transient state when it is activated again
    ...
}