C#Windows 10 Toast通知

时间:2018-07-19 05:16:18

标签: c# windows push-notification toast

我正在尝试在计时器用完时间后显示敬酒通知。 该通知可在我的一台PC上运行,但另一台则不会显示。调试时没有错误。 我还尝试在“设置”>“通知”中进行设置,但是在允许/不允许显示通知的应用列表中设置我看不到我的应用。

这是我的通知课程:

    class NewToastNotification
   {
      public NewToastNotification(string text)
      {
         string Toast = String.Format("<toast>"+
                                          "<visual>+" +
                                                "<binding template=\"ToastImageAndText04\">" +
                                                    "<text id = \"1\" >Toast Test </text>+" +
                                                    "<text id = \"2\" >{0}</text>+" +
                                                    "<text id = \"2\" >{1}</text>+" +
                                                "</binding>+" +
                                          "</visual>+" +
                                     "</toast>", text, DateTime.Now);

         var tileXml = new Windows.Data.Xml.Dom.XmlDocument();
         tileXml.LoadXml(Toast);
         var toast = new ToastNotification(tileXml);
         ToastNotificationManager.CreateToastNotifier("1").Show(toast);
      }
   }

1 个答案:

答案 0 :(得分:0)

使用

ToastNotificationManager.CreateToastNotifier().Show(toast);

代替

ToastNotificationManager.CreateToastNotifier("1").Show(toast);