我已经对 Windows Phone 应用程序的生命周期进行了一些研究,并且我收集到当手机被锁定而应用程序仍在运行时,并且您解锁手机时,App.xaml 中会调用“Application_Activated”函数。 cs 文件。
// 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)
{
//Code to run
MessageBox.Show("Hello there!");
}
现在在上面的例子中,简单的“MessageBox”调用没有运行。就像我说的,如果你的应用程序正在运行并且你锁定了手机,然后解锁了手机,上面的代码应该会运行,在这种情况下,一旦你解锁手机就会显示一个 MessageBox。
任何帮助将不胜感激!谢谢。