我做了预定的任务代理。它工作正常,但我不知道如何识别用户是通过Toast通知还是通过正常点击图块来打开应用程序。
或者您可能只知道如何通过点击通知来打开不同的页面。
答案 0 :(得分:2)
protected override void OnLaunched(LaunchActivatedEventArgs args)
{
string launchString = args.Arguments
If ( launchString ….)
{
rootFrame.Navigate(typeof(page2));
}
else
{
rootFrame.Navigate(typeof(MainPage));
}
...
}
答案 1 :(得分:1)
如果我理解正确 - 您需要在用户点击Toast通知时打开该应用程序。
以下详细描述: How to handle activation from a toast notification (XAML)