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

如此 如果按钮放置在应用通知上下文菜单中;否则为 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 架构的参考信息,请参阅 应用通知内容架构

适用于