次の方法で共有


AppNotificationButton コンストラクター

定義

オーバーロード

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 ペイロードに AppNotificationButton 追加します。

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

アプリ通知の 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 ペイロードに AppNotificationButton 追加します。

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

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

適用対象