다음을 통해 공유


BadgeNotification(XmlDocument) 생성자

정의

BadgeNotification의 새 instance 만들고 초기화합니다.

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의 숫자 또는 상태 문자 모양일 수 있습니다. 사용 가능한 이미지의 전체 목록은 배지 개요 를 참조하세요.

적용 대상

추가 정보