ToastNotification(XmlDocument) 建構函式

定義

建立並初始化 ToastNotification的新實例。

public:
 ToastNotification(XmlDocument ^ content);
 ToastNotification(XmlDocument const& content);
public ToastNotification(XmlDocument content);
function ToastNotification(content)
Public Sub New (content As XmlDocument)

參數

content
XmlDocument

定義快顯通知的 XML 內容。

範例

下列範例示範如何建立並傳送包含文字和影像的快顯通知,包括使用 ToastNotification 建構函式。

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);

適用於

另請參閱