BadgeUpdater.Update(BadgeNotification) 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 al glifo o número del distintivo.
public:
virtual void Update(BadgeNotification ^ notification) = Update;
void Update(BadgeNotification const& notification);
public void Update(BadgeNotification notification);
function update(notification)
Public Sub Update (notification As BadgeNotification)
Parámetros
- notification
- BadgeNotification
Objeto que proporciona la nueva definición XML para el distintivo.
Ejemplos
En el ejemplo siguiente se muestra el uso de Update para enviar una actualización de distintivo numérico al icono de la aplicación que llama.
function sendBadgeNotification() {
var Notifications = Windows.UI.Notifications;
var badgeXml;
var badgeAttributes;
// Get an XML DOM version of a specific template by using getTemplateContent.
badgeXml = Notifications.BadgeUpdateManager.getTemplateContent(Notifications.BadgeTemplateType.badgeNumber);
badgeAttributes = badgeXml.getElementsByTagName("badge");
badgeAttributes[0].setAttribute("value", "7");
// Create a badge notification from the XML content.
var badgeNotification = new Notifications.BadgeNotification(badgeXml);
// Send the badge notification to the app's tile.
Notifications.BadgeUpdateManager.createBadgeUpdaterForApplication().update(badgeNotification);
}
Se aplica a
Consulte también
- Ejemplo de iconos y distintivos de la aplicación
- Directrices y lista de comprobación de iconos y distintivos
- Cómo borrar un distintivo
- Cómo enviar un glifo o un distintivo numérico en una notificación local
- Cómo configurar notificaciones periódicas para distintivos
- Cómo actualizar un distintivo mediante notificaciones de inserción
- Esquema XML distintivo
- Información general sobre distintivos