磁贴的通知方法

发布网友 发布时间:2022-04-22 08:02

我来回答

1个回答

热心网友 时间:2022-06-18 06:08

说明
步骤 1: 设置选项以启用通知循环 此代码为你的应用启用通知队列。运行应用时,仅需要发起此调用一次,因此应在初始化代码中发起此次调用。
Windows.UI.Notifications.TileUpdateManager.createTileUpdaterForApplication().enableNotificationQueue(true);
步骤 2: 创建磁贴通知 这是所有磁贴通知中的第一步且这种情形与其他任何情形没有区别,此处包含该步骤仅用于完整性。有关详细信息,请参阅快速入门:发送磁贴更新。
var template = Windows.UI.Notifications.TileTemplateType.tileWideText03; var tileXml = Windows.UI.Notifications.TileUpdateManager.getTemplateContent(template); // TODO: Fill in the template with your tile content.// TODO: Define a square tile and add it to tileXML.var tileNotification = new Windows.UI.Notifications.TileNotification(tileXml);
步骤 3: 授予通知标记 此步骤可选。标记为不超过 16 个字符的字符串加上终止 NULL 字符,用于唯一标识应用中的通知。
tileNotification.tag = stock.msft;
步骤 4: 向磁贴发送通知
Windows.UI.Notifications.TileUpdateManager.createTileUpdaterForApplication().update(tileNotification);

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com