TileUpdater.Update(TileNotification) Metodo
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.
Applica una modifica del contenuto o dell'aspetto al riquadro.
public:
virtual void Update(TileNotification ^ notification) = Update;
void Update(TileNotification const& notification);
public void Update(TileNotification notification);
function update(notification)
Public Sub Update (notification As TileNotification)
Parametri
- notification
- TileNotification
Oggetto che fornisce la nuova definizione XML per il contenuto del riquadro.
Esempio
L'esempio seguente mostra Update usato per inviare una notifica al riquadro dell'app.
function sendTileTextNotification() {
var Notifications = Windows.UI.Notifications;
// Get an XML DOM version of a specific template by using getTemplateContent.
var tileXml = Notifications.TileUpdateManager.getTemplateContent(Notifications.TileTemplateType.tileWide310x150Text03);
// You will need to look at the template documentation to know how many text fields a particular template has.
// Get the text attribute for this template and fill it in.
var tileAttributes = tileXml.getElementsByTagName("text");
tileAttributes[0].appendChild(tileXml.createTextNode("Hello World!"));
// Create the notification from the XML.
var tileNotification = new Notifications.TileNotification(tileXml);
// Send the notification to the calling app's tile.
Notifications.TileUpdateManager.createTileUpdaterForApplication().update(tileNotification);
}
Si applica a
Vedi anche
- Esempio di riquadri e notifiche dell'app
- Guida introduttiva: Invio di un aggiornamento dei riquadri
- Panoramica delle notifiche di riquadri e riquadri
- Catalogo dei modelli di riquadro
- Linee guida ed elenco di controllo per i riquadri
- Come pianificare una notifica di tipo riquadro
- Come usare la coda di notifica con le notifiche locali
- Come configurare notifiche periodiche per i riquadri
- Riquadri XML Schema