您好,
我正在测试 Windows RT 应用程序的 Toast 通知。我在清单文件上将“Toast Capable”设置为yes,并创建了一个由按钮调用的示例方法,其中包含以下代码:
var toastTemplate = ToastNotificationManager.GetTemplateContent(ToastTemplateType.ToastImageAndText01);
var text = toastTemplate.GetElementsByTagName("text")[0] as XmlElement; text.AppendChild(toastTemplate.CreateTextNode("这是测试!"));
var image = toastTemplate.GetElementsByTagName("image")[0] as XmlElement; image.SetAttribute("src", String.Format("ms-appx:///{0}", "Images/rss_logo.png"));
ToastNotification toastNotification = new ToastNotification(toastTemplate); ToastNotifier toastNotifier = ToastNotificationManager.CreateToastNotifier(); toastNotifier.Show(toastNotification);
当我点击按钮时,通知出现在屏幕的右上角,但没有文字和图像......只有框,带有应用程序的标志。
你能告诉我我哪里错了吗?谢谢你的帮助。