ToastNotification(XmlDocument) Costruttore
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Crea e inizializza una nuova istanza di ToastNotification.
public:
ToastNotification(XmlDocument ^ content);
ToastNotification(XmlDocument const& content);
public ToastNotification(XmlDocument content);
function ToastNotification(content)
Public Sub New (content As XmlDocument)
Parametri
- content
- XmlDocument
Contenuto XML che definisce la notifica di tipo avviso popup.
Esempio
Nell'esempio seguente viene illustrato come creare e inviare una notifica di tipo avviso popup che include testo e immagini, incluso l'uso del costruttore 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);
Si applica a
Vedi anche
- Esempio di notifiche di tipo avviso popup
- Esempio di invio notifiche di tipo avviso popup da app desktop
- Xml Schema di tipo avviso popup
- Riquadri e notifiche
- Avvio rapido: Invio di una notifica di tipo avviso popup
- Avvio rapido: Invio di una notifica push popup
- Avvio rapido: Invio di una notifica popup dal desktop
- Linee guida ed elenco di controllo per le notifiche popup
- Come gestire l'attivazione da una notifica di tipo avviso popup
- Come acconsentire esplicitamente alle notifiche di tipo avviso popup
- Come pianificare una notifica di tipo avviso popup
- Come abilitare le notifiche di tipo avviso popup sul desktop tramite un AppUserModelID
- Catalogo di modelli di tipo avviso popup
- Opzioni audio di tipo avviso popup