BadgeUpdateManager.CreateBadgeUpdaterForApplication メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
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)
- アプリのタイルとバッジのサンプル
- タイルとバッジのガイドラインとチェック リスト
- バッジをクリアする方法
- ローカル通知でグリフまたは数値バッジを送信する方法
- バッジの定期的な通知を設定する方法
- プッシュ通知を使用してバッジを更新する方法
- バッジ XML スキーマ
- バッジの概要
適用対象
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 によって識別されるアプリは、呼び出し元と同じパッケージに属している必要があります。
こちらもご覧ください
- CreateBadgeUpdaterForApplication()
- アプリのタイルとバッジのサンプル
- タイルとバッジのガイドラインとチェック リスト
- バッジをクリアする方法
- ローカル通知でグリフまたは数値バッジを送信する方法
- バッジの定期的な通知を設定する方法
- プッシュ通知を使用してバッジを更新する方法
- バッジ XML スキーマ
- バッジの概要