我做了以下事情: 1.推出我的应用程序 2.推出另一个应用程序 3.再次点击我的应用程序(例如从应用程序列表中取出)
在步骤.3我希望得到一个消息回调,但我不会。
在App.xaml.cs文件中,我添加了方法onResuming this
的方法:
public App()
{
//this.askToBeOnLockScreen();
this.createRegisterBgTask();
this.InitializeComponent();
this.Suspending += OnSuspending;
this.Resuming += OnResuming;
}
这里我重写了两种方法:
private void OnResuming(object sender, object e)
{
Debug.WriteLine("OnResuming ...................");
}
private void OnSuspending(object sender, SuspendingEventArgs e)
{
Debug.WriteLine("onsuspending ......................................................");
var deferral = e.SuspendingOperation.GetDeferral();
deferral.Complete();
}
甚至没有调用onsuspending。
我做错了什么?
我是Windows商店应用的新手