AppNotificationButton.ContextMenuPlacement プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリ通知コンテキスト メニュー内にボタンを表示するかどうかを指定する値を取得または設定します。
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 スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。