我正在开发一个Windows Phone应用程序,我想知道当屏幕上显示某个页面并且手机接到电话时,会发生哪个事件?我如何订阅该活动?
在Windows Phone 8中,它是Obscured事件。
有没有类似的事件?
答案 0 :(得分:1)
我会看CoreWindow.已激活以查看应用窗口何时被激活和停用。
{
...
Window.Current.Activated += Current_Activated;
...
}
void Current_Activated(object sender, Windows.UI.Core.WindowActivatedEventArgs e)
{
Debug.WriteLine(String.Format("Activated {0}", e.WindowActivationState));
}