AppNotificationButton.SetIcon(Uri) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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
パラメーター
戻り値
追加のメソッド呼び出しをチェーンできるように、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
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。