次の方法で共有


AppNotificationButton.SetIcon(Uri) メソッド

定義

AppNotificationButtonのアイコンを設定します。

public:
 virtual AppNotificationButton ^ SetIcon(Uri ^ value) = SetIcon;
AppNotificationButton SetIcon(Uri const& value);
public AppNotificationButton SetIcon(System.Uri value);
function setIcon(value)
Public Function SetIcon (value As Uri) As AppNotificationButton

パラメーター

value
Uri Uri

ボタン アイコンの URI。

戻り値

追加のメソッド呼び出しをチェーンできるように、AppNotificationButton インスタンスを返します。

次の例では、このメソッドを使用してアプリ通知ボタンのアイコンを設定する方法を示します。

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .AddButton(new AppNotificationButton("Reply")
        .AddArgument("action", "reply")
        .SetIcon(new Uri("ms-appx:///Images/Reply.png")))
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

緊急シナリオがサポートされている場合の結果の XML ペイロード:

<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
    <actions>
        <action content='Reply' arguments='action=reply' imageUri='ms-appx:///Images/Reply.png'/>
    </actions>
</toast>

注釈

AppNotificationButton.Iconを使用して、アプリ通知ボタンのアイコンを設定することもできます。

次のスクリーンショットは、アイコンを使用するアプリ通知ボタンを示しています。

アイコンを使用するボタンを含むアプリ通知のスクリーンショット。

サポートされているイメージ ファイルの種類は次のとおりです。

  • .png
  • .jpg
  • .svg

AppNotificationBuilder API を使用してアプリ通知用の UI を作成する方法については、「アプリ通知コンテンツ参照してください。

アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。

適用対象