AppNotificationButton.Icon 属性

定义

获取或设置 AppNotificationButton 的图标。

public:
 property Uri ^ Icon { Uri ^ get(); void set(Uri ^ value); };
Uri Icon();

void Icon(Uri value);
public System.Uri Icon { get; set; }
var uri = appNotificationButton.icon;
appNotificationButton.icon = uri;
Public Property Icon As Uri

属性值

按钮图标的 URI。

示例

以下示例演示了如何使用此属性来设置应用通知按钮的图标。

var button = new AppNotificationButton("Reply")
    .AddArgument("action", "reply");
button.Icon = new Uri("ms-appx:///Images/Reply.png");

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' imageUri='ms-appx:///Images/Reply.png'/>
    </actions>
</toast>

注解

还可以通过调用 AppNotificationButton.SetIcon 来设置应用通知按钮的图标。

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

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

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

  • .png
  • .jpg
  • 。Svg

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

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

适用于