win 10 uwpはToastに通知します.
2202 ワード
win 10通知はToastを使用します.
win 10テンプレートで通知を追加できます.
Windows.UU.Notification.Toast Notification toast=new Toast Notification;
文章はある大神さんを参考にしていますが、彼の書いたのを忘れてしまいました.すみません.
win 10テンプレートで通知を追加できます.
var t = Windows.UI.Notifications.ToastTemplateType.ToastText02;
GetTemplateContectを使用してテンプレートxmlを取得し、変更できます.var content = Windows.UI.Notifications.ToastNotificationManager.GetTemplateContent(t);
Xml NodeList xml=content.GetElements ByTagNameを使います.X mlノードを取得しますxml[0].AppendChild(content.CreateTextNode(" "));
xml[1].AppendChild(content.CreateTextNode(" "));
使う?遣うWindows.UU.Notification.Toast Notification toast=new Toast Notification;
ToastNotificationManager.CreateToastNotifier().Show(toast);
コード //
//ToastImageAndText01
//ToastImageAndText02 、 、 、
//ToastImageAndText03 、 、
//ToastImageAndText04 、 、 、
//ToastText01
//ToastText02 、 。
//ToastText03 。
//ToastText04 、 、
var t = Windows.UI.Notifications.ToastTemplateType.ToastText02;
// xml
var content = Windows.UI.Notifications.ToastNotificationManager.GetTemplateContent(t);
// using Windows.Data.Xml.Dom;
XmlNodeList xml = content.GetElementsByTagName("text");
xml[0].AppendChild(content.CreateTextNode(" "));
xml[1].AppendChild(content.CreateTextNode(" "));
// using Windows.UI.Notifications;
Windows.UI.Notifications.ToastNotification toast = new ToastNotification(content);
ToastNotificationManager.CreateToastNotifier().Show(toast);
コード:https://code.csdn.net/lindexi_gd/lindexi_gd/tree/master/Toastu%E 9%80%9 A%E 7%9 F%A 5文章はある大神さんを参考にしていますが、彼の書いたのを忘れてしまいました.すみません.