次の方法で共有


BadgeUpdateManager.CreateBadgeUpdaterForApplication メソッド

定義

オーバーロード

CreateBadgeUpdaterForApplication()

BadgeUpdater の新しいインスタンスを作成して初期化します。これにより、呼び出し元のアプリのタイルでバッジの外観または内容を変更できます。

CreateBadgeUpdaterForApplication(String)

指定したアプリ タイルのバッジ (通常はパッケージ内の別のアプリのタイル) の BadgeUpdater の新しいインスタンスを作成して初期化します。 BadgeUpdater を使用すると、そのバッジの外観またはコンテンツを変更できます。

CreateBadgeUpdaterForApplication()

BadgeUpdater の新しいインスタンスを作成して初期化します。これにより、呼び出し元のアプリのタイルでバッジの外観または内容を変更できます。

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

戻り値

アプリ タイルのバッジに変更を送信するために使用するオブジェクト。

属性

次の例は、呼び出し元アプリのタイルに数値バッジの更新を送信するために使用される CreateBadgeUpdaterForApplication を示しています。

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

こちらもご覧ください

適用対象

CreateBadgeUpdaterForApplication(String)

指定したアプリ タイルのバッジ (通常はパッケージ内の別のアプリのタイル) の BadgeUpdater の新しいインスタンスを作成して初期化します。 BadgeUpdater を使用すると、そのバッジの外観またはコンテンツを変更できます。

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

パラメーター

applicationId
String

Platform::String

winrt::hstring

バッジを更新するタイルの一意の ID。

戻り値

アプリケーション タイルのバッジに変更を送信するために使用するオブジェクト。

属性

注釈

applicationId によって識別されるアプリは、呼び出し元と同じパッケージに属している必要があります。

こちらもご覧ください

適用対象