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 的指引,請參閱 代理程式更新內容。
如需代理程式更新之 XML 架構的參考資訊,請參閱 代理程式更新內容架構。