AppNotificationButton コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
AppNotificationButton() |
AppNotificationButton クラスの新しいインスタンスを初期化します。 |
AppNotificationButton(String) |
指定したボタン テキストを使用して、AppNotificationButton クラスの新しいインスタンスを初期化します。 |
AppNotificationButton()
AppNotificationButton クラスの新しいインスタンスを初期化します。
public:
AppNotificationButton();
AppNotificationButton();
public AppNotificationButton();
function AppNotificationButton()
Public Sub New ()
例
次の例は、このメソッドを使用してアプリ通知にボタンを追加する方法を示しています。
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.AddButton(new AppNotificationButton()
.AddArgument("action", "reply"))
.BuildNotification();
AppNotificationManager.Default.Show(notification);
結果の XML ペイロード:
<toast>
<visual>
<binding template='ToastGeneric'>
<text>Notification text.</text>
</binding>
</visual>
<actions>
<action content='' arguments='action=reply'/>
</actions>
</toast>
注釈
AppNotificationBuilder.AddButtonを呼び出して、アプリ通知の xml ペイロードに
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。
適用対象
AppNotificationButton(String)
指定したボタン テキストを使用して、AppNotificationButton クラスの新しいインスタンスを初期化します。
public:
AppNotificationButton(Platform::String ^ content);
AppNotificationButton(winrt::hstring const& content);
public AppNotificationButton(string content);
function AppNotificationButton(content)
Public Sub New (content As String)
パラメーター
- content
-
String
Platform::String
winrt::hstring
ボタンに表示されるテキスト。
例
次の例は、このメソッドを使用してアプリ通知にボタンを追加する方法を示しています。
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.AddButton(new AppNotificationButton("Reply")
.AddArgument("action", "reply"))
.BuildNotification();
AppNotificationManager.Default.Show(notification);
結果の XML ペイロード:
<toast>
<visual>
<binding template='ToastGeneric'>
<text>Notification text.</text>
</binding>
</visual>
<actions>
<action content='Reply' arguments='action=reply'/>
</actions>
</toast>
注釈
AppNotificationBuilder.AddButtonを呼び出して、アプリ通知の xml ペイロードに
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。