BadgeNotification(XmlDocument) 构造函数

定义

创建并初始化 BadgeNotification 的新实例。

public:
 BadgeNotification(XmlDocument ^ content);
 BadgeNotification(XmlDocument const& content);
public BadgeNotification(XmlDocument content);
function BadgeNotification(content)
Public Sub New (content As XmlDocument)

参数

content
XmlDocument

定义锁屏提醒更新的 XML 内容。

示例

以下示例代码使用 BadgeNotification 方法创建数字锁屏提醒通知。

var Notifications = Windows.UI.Notifications;

var badgeXml = Notifications.BadgeUpdateManager.getTemplateContent(Notifications.BadgeTemplateType.badgeNumber);
var badgeAttributes = badgeXml.getElementsByTagName("badge");
badgeAttributes[0].setAttribute("value", "26");

// Create a badge notification from XML
var badgeNotification = new Notifications.badgeNotification(badgeXml);

注解

值属性可以是 1-99 的数字或状态字形。 有关可用映像的完整列表,请参阅 锁屏提醒概述

适用于

另请参阅