AppNotificationButton.SetContextMenuPlacement メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
通知のコンテキスト メニューにアプリ通知ボタンを配置することを要求します。
public:
virtual AppNotificationButton ^ SetContextMenuPlacement() = SetContextMenuPlacement;
AppNotificationButton SetContextMenuPlacement();
public AppNotificationButton SetContextMenuPlacement();
function setContextMenuPlacement()
Public Function SetContextMenuPlacement () As AppNotificationButton
戻り値
追加のメソッド呼び出しをチェーンできるように、AppNotificationButton インスタンスを返します。
例
次の例は、このメソッドを使用して、アプリ通知ボタンのコンテキスト メニューの配置を設定する方法を示しています。
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.AddButton(new AppNotificationButton("Reply")
.AddArgument("action", "reply")
.SetContextMenuPlacement())
.BuildNotification();
AppNotificationManager.Default.Show(notification);
緊急シナリオがサポートされている場合の結果の XML ペイロード:
<toast>
<visual>
<binding template='ToastGeneric'>
<text>Notification text.</text>
</binding>
</visual>
<actions>
<action content='Reply' arguments='action=reply' placement='contextMenu'/>
</actions>
</toast>
注釈
AppNotificationButton.ContextMenuPlacement プロパティを使用して、コンテキスト メニューの配置値を設定することもできます。
AppNotificationBuilder API を使用して UI forapp 通知を作成する方法については、「アプリ通知コンテンツ」を参照してください。
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。