从通知导航

Navigate from notification

我做了定时任务代理。它工作正常,但我不知道如何识别用户是通过 toast 通知打开应用程序还是通过正常点击磁贴打开应用程序。

或者您可能知道如何通过点击通知打开不同的页面。

如果我没理解错——你需要在用户点击toast通知时打开应用

这里都详细说明了: How to handle activation from a toast notification (XAML)

protected override void OnLaunched(LaunchActivatedEventArgs args)
{
string launchString = args.Arguments
    If (  launchString ….)
    {
    rootFrame.Navigate(typeof(page2));
    }
    else
    {
    rootFrame.Navigate(typeof(MainPage));
    }
...
}