BadgeNotification(XmlDocument) 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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의 숫자 또는 상태 문자 모양일 수 있습니다. 사용 가능한 이미지의 전체 목록은 배지 개요 를 참조하세요.