将代码添加到Toast通知UWP

时间:2016-06-18 07:04:10

标签: c# windows notifications uwp toast

我从项目外部执行Toast通知(在后台执行)。你有:

private void SendMessage(string title, string text)
{
    ToastTemplateType toastTemplate = ToastTemplateType.ToastText02;
    XmlDocument toastXml = ToastNotificationManager.GetTemplateContent(toastTemplate);
    XmlNodeList textElements = toastXml.GetElementsByTagName("text");
    textElements[0].AppendChild(toastXml.CreateTextNode(title));
    textElements[1].AppendChild(toastXml.CreateTextNode(text));
    ToastNotificationManager.CreateToastNotifier().Show(new ToastNotification(toastXml));
}

我的问题是当我尝试在用户点击toast时执行代码时,我想从Main项目中执行部分代码。有没有办法做到这一点?

由于

1 个答案:

答案 0 :(得分:0)

this article中,您可以找到处理来自Toast通知的激活部分 不久:
在toast上点击了OnActivated事件,你可以检查参数 使用新的吐司模板:

protected override void OnActivated(IActivatedEventArgs e)
{
  if (e is ToastNotificationActivatedEventArgs)
  {

  }
}

并使用旧模板(我认为你有):

protected override void OnLaunched(LaunchActivatedEventArgs args)
{
   string launchString = args.Arguments
   // ....
}