ToastNotificationManager.GetTemplateContent(ToastTemplateType) 方法

定义

获取其中一个预定义 Toast 模板的 XML 内容,以便可以对其进行自定义以用于通知。

public:
 static XmlDocument ^ GetTemplateContent(ToastTemplateType type);
 static XmlDocument GetTemplateContent(ToastTemplateType const& type);
public static XmlDocument GetTemplateContent(ToastTemplateType type);
function getTemplateContent(type)
Public Shared Function GetTemplateContent (type As ToastTemplateType) As XmlDocument

参数

type
ToastTemplateType

系统提供的 Toast 模板之一。

返回

包含模板 XML 的 对象。

示例

以下示例演示如何创建和发送包含文本和图像的 Toast 通知,包括使用 GetTemplateContent 方法。

var notifications = Windows.UI.Notifications;

// Get the toast notification manager for the current app.
var notificationManager = notifications.ToastNotificationManager;

// The getTemplateContent method returns a Windows.Data.Xml.Dom.XmlDocument object
// that contains the toast notification XML content.
var template = notifications.toastTemplateType.toastImageAndText01;
var toastXml = notificationManager.getTemplateContent(notifications.ToastTemplateType[template]);

// You can use the methods from the XML document to specify the required elements for the toast.
var images = toastXml.getElementsByTagName("image");
images[0].setAttribute("src", "images/toastImageAndText.png");

var textNodes = toastXml.getElementsByTagName("text");
textNodes.forEach(function (value, index) {
    var textNumber = index + 1;
    var text = "";
    for (var j = 0; j < 10; j++) {
        text += "Text input " + /*@static_cast(String)*/textNumber + " ";
    }
    value.appendChild(toastXml.createTextNode(text));
});

// Create a toast notification from the XML, then create a ToastNotifier object
// to send the toast.
var toast = new notifications.ToastNotification(toastXml);

notificationManager.createToastNotifier().show(toast);

注解

可以获取模板,然后使用文档对象模型 (DOM) 操作函数来自定义要更改的内容部分,而不是自行创建完整的 XML 有效负载。 将此 XML 打包在 ToastNotification 中,并通过通过此类的其他方法创建的 ToastNotifier 将其发送到磁贴。

有关 磁贴 元素和属性的说明,请参阅磁贴架构。

适用于

另请参阅