0

我想在下载完成时显示 toast 通知。但是它不起作用。为什么不起作用?

if (download.Progress.Status == BackgroundTransferStatus.Completed)
        {
            XmlDocument toastXml = ToastNotificationManager.GetTemplateContent(ToastTemplateType.ToastImageAndText04);

            XmlNodeList stringElements = toastXml.GetElementsByTagName("text");
            stringElements[0].AppendChild(toastXml.CreateTextNode("Hello toast"));

            ToastNotification toast = new ToastNotification(toastXml);

            ToastNotificationManager.CreateToastNotifier(CoreApplication.Id).Show(toast);
        }
4

1 回答 1

2

您是否确保您的应用在应用清单中支持 toast?

于 2012-09-18T11:33:02.023 回答