WP7/8中的Toast是不能在前台弹出的。
WP8.1StoreApp可以利用Win8中的方式:
private void Toast(string title,string content) { ToastTemplateType toastTemplate = ToastTemplateType.ToastText02;//WindowsPhone上只支持这一种 XmlDocument toastXml = ToastNotificationManager.GetTemplateContent(toastTemplate); XmlNodeList toastTextElements = toastXml.GetElementsByTagName("text"); toastTextElements[0].AppendChild(toastXml.CreateTextNode(title)); toastTextElements[0].AppendChild(toastXml.CreateTextNode(content)); ToastNotification toast = new ToastNotification(toastXml); ToastNotificationManager.CreateToastNotifier().Show(toast); }
效果如下:
MSDN相关介绍:http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh868254.aspx
WP8.1StoreApp(WP8.1RT)---本地Toast,布布扣,bubuko.com
WP8.1StoreApp(WP8.1RT)---本地Toast
原文:http://www.cnblogs.com/liubaicai/p/3672164.html