AppNotificationButton.Arguments 属性

定义

获取或设置与 AppNotificationButton关联的参数。

public:
 property IMap<Platform::String ^, Platform::String ^> ^ Arguments { IMap<Platform::String ^, Platform::String ^> ^ get(); void set(IMap<Platform::String ^, Platform::String ^> ^ value); };
IMap<winrt::hstring, winrt::hstring const&> Arguments();

void Arguments(IMap<winrt::hstring, winrt::hstring const&> value);
public IDictionary<string,string> Arguments { get; set; }
var iMap = appNotificationButton.arguments;
appNotificationButton.arguments = iMap;
Public Property Arguments As IDictionary(Of String, String)

属性值

IMap<String,String>

IDictionary<String,String>

IMap<Platform::String,Platform::String>

IMap<winrt::hstring,winrt::hstring>

表示应用通知按钮参数的键/值对字典。

示例

下面的示例演示如何使用此属性将参数添加到应用通知按钮。

var args = new Dictionary<string, string>() { { "action", "reply" }, { "arg2", "value" } };

var button = new AppNotificationButton("Reply");
button.Arguments = args;

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='Reply' arguments='action=reply;arg2=value'/><
    /actions>
</toast>

注解

当用户单击该按钮时,使用此方法添加的应用通知按钮参数将传递给激活的应用程序。 可以将多个参数添加到每个按钮。 可以通过访问 AppNotificationActivatedEventArgs.Arguments 属性来检索使用此方法添加的参数,或在一次调用中添加多个参数。

还可以通过调用 AppNotificationButton.AddArgument来添加单个参数。

有关使用 AppNotificationBuilder API 创建 UI forapp 通知的指导,请参阅 应用通知内容

有关应用通知的 XML 架构的参考信息,请参阅 应用通知内容架构

适用于