AppNotificationButton.SetIcon(Uri) 方法

定义

设置 AppNotificationButton 的图标。

public:
 virtual AppNotificationButton ^ SetIcon(Uri ^ value) = SetIcon;
AppNotificationButton SetIcon(Uri const& value);
public AppNotificationButton SetIcon(System.Uri value);
function setIcon(value)
Public Function SetIcon (value As Uri) As AppNotificationButton

参数

value
Uri Uri

按钮图标的 URI。

返回

返回 AppNotificationButton 实例,以便可以链接其他方法调用。

示例

以下示例演示如何使用此方法设置应用通知按钮的图标。

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .AddButton(new AppNotificationButton("Reply")
        .AddArgument("action", "reply")
        .SetIcon(new Uri("ms-appx:///Images/Reply.png")))
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

如果支持紧急方案,则生成的 XML 有效负载:

<toast>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
    <actions>
        <action content='Reply' arguments='action=reply' imageUri='ms-appx:///Images/Reply.png'/>
    </actions>
</toast>

注解

还可以使用 AppNotificationButton.Icon 设置应用通知按钮的图标。

以下屏幕截图演示了使用图标的应用通知按钮。

应用通知的屏幕截图,其中包含使用图标的按钮。

支持的图像文件类型包括:

  • .png
  • .jpg
  • 。Svg

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

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

适用于