次の方法で共有


AppNotificationButton.ContextMenuPlacement プロパティ

定義

アプリ通知コンテキスト メニュー内にボタンを表示するかどうかを指定する値を取得または設定します。

public:
 property bool ContextMenuPlacement { bool get(); void set(bool value); };
bool ContextMenuPlacement();

void ContextMenuPlacement(bool value);
public bool ContextMenuPlacement { get; set; }
var boolean = appNotificationButton.contextMenuPlacement;
appNotificationButton.contextMenuPlacement = boolean;
Public Property ContextMenuPlacement As Boolean

プロパティ値

Boolean

bool

True の 場合は、ボタンがアプリ通知コンテキスト メニュー内に配置されます。それ以外の場合は false。

次の例は、このメソッドを使用してアプリ通知コンテキスト メニューにボタンを追加する方法を示しています。

var button = new AppNotificationButton("More info")
    .AddArgument("action", "info");
button.ContextMenuPlacement = true;

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .AddButton(button)
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

結果の XML ペイロード:

<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
    <actions>
        <action content='More info' arguments='action=info' placement='contextMenu'/>
    </actions>
</toast>

注釈

AppNotificationButton.SetContextMenuPlacement呼び出して、コンテキスト メニューの配置値を設定することもできます。

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

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

適用対象