Freigeben über


BadgeUpdateManager.CreateBadgeUpdaterForApplication Methode

Definition

Überlädt

CreateBadgeUpdaterForApplication()

Erstellt und initialisiert eine neue instance von BadgeUpdater, mit der Sie die Darstellung oder den Inhalt des Badges auf der Kachel der aufrufenden App ändern können.

CreateBadgeUpdaterForApplication(String)

Erstellt und initialisiert eine neue instance des BadgeUpdater für das Badge einer angegebenen App-Kachel, in der Regel die Kachel einer anderen App im Paket. Mit BadgeUpdater können Sie die Darstellung oder den Inhalt dieses Badges ändern.

CreateBadgeUpdaterForApplication()

Erstellt und initialisiert eine neue instance von BadgeUpdater, mit der Sie die Darstellung oder den Inhalt des Badges auf der Kachel der aufrufenden App ändern können.

public:
 static BadgeUpdater ^ CreateBadgeUpdaterForApplication();
/// [Windows.Foundation.Metadata.Overload("CreateBadgeUpdaterForApplication")]
 static BadgeUpdater CreateBadgeUpdaterForApplication();
[Windows.Foundation.Metadata.Overload("CreateBadgeUpdaterForApplication")]
public static BadgeUpdater CreateBadgeUpdaterForApplication();
function createBadgeUpdaterForApplication()
Public Shared Function CreateBadgeUpdaterForApplication () As BadgeUpdater

Gibt zurück

Das Objekt, das Sie zum Senden von Änderungen am Badge der App-Kachel verwenden.

Attribute

Beispiele

Das folgende Beispiel zeigt CreateBadgeUpdaterForApplication, die verwendet wird, um ein numerisches Signalupdate an die Kachel der aufrufenden App zu senden.

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);
}

Weitere Informationen

Gilt für:

CreateBadgeUpdaterForApplication(String)

Erstellt und initialisiert eine neue instance des BadgeUpdater für das Badge einer angegebenen App-Kachel, in der Regel die Kachel einer anderen App im Paket. Mit BadgeUpdater können Sie die Darstellung oder den Inhalt dieses Badges ändern.

public:
 static BadgeUpdater ^ CreateBadgeUpdaterForApplication(Platform::String ^ applicationId);
/// [Windows.Foundation.Metadata.Overload("CreateBadgeUpdaterForApplicationWithId")]
 static BadgeUpdater CreateBadgeUpdaterForApplication(winrt::hstring const& applicationId);
[Windows.Foundation.Metadata.Overload("CreateBadgeUpdaterForApplicationWithId")]
public static BadgeUpdater CreateBadgeUpdaterForApplication(string applicationId);
function createBadgeUpdaterForApplication(applicationId)
Public Shared Function CreateBadgeUpdaterForApplication (applicationId As String) As BadgeUpdater

Parameter

applicationId
String

Platform::String

winrt::hstring

Die eindeutige ID der Kachel, deren Badge Sie aktualisieren möchten.

Gibt zurück

Das Objekt, das Sie zum Senden von Änderungen am Badge der Anwendungskachel verwenden.

Attribute

Hinweise

Die durch applicationId identifizierte App muss zum gleichen Paket gehören wie der Aufrufer.

Weitere Informationen

Gilt für: