TileUpdater.Update(TileNotification) Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Aplica un cambio en el contenido o la apariencia al icono.
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)
Parámetros
- notification
- TileNotification
Objeto que proporciona la nueva definición XML para el contenido del icono.
Ejemplos
En el ejemplo siguiente se muestra Update usado para enviar una notificación al icono de la aplicación.
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);
}
Se aplica a
Consulte también
- Ejemplo de iconos y distintivos de la aplicación
- Inicio rápido: Envío de una actualización de icono
- Información general sobre las notificaciones de iconos y iconos
- Catálogo de plantillas de icono
- Directrices y lista de comprobación para iconos
- Programación de una notificación de icono
- Uso de la cola de notificaciones con notificaciones locales
- Cómo configurar notificaciones periódicas para iconos
- Esquema XML de iconos