uwp Segoe MDL2图标,为什么没有铃声/警报图标

时间:2020-09-14 15:15:50

标签: uwp notifications icons alert

我在Segoe MDL2图标中搜索了铃声/警报/通知图标。我找不到它,是仅创建自己的响铃图标选项,还是有其他选择?

2 个答案:

答案 0 :(得分:1)

RingerBadge12 (EDAC)看起来像响铃/通知图标吗?

否则,您可以查看ActionCenterNotification (E7E7)

答案 1 :(得分:1)

在元素 AppBarButton(和类似元素)的属性图标上,您只能设置枚举图标。要使用 Segoe MDL2 Assets,只需执行以下操作:

<AppBarButton>
    <AppBarButton.Icon>
        <FontIcon FontFamily="Segoe MDL2 Assets" Glyph="&#xEA8F;"/>
    </AppBarButton.Icon>
</AppBarButton> 

附言如果对您有帮助,请点赞 :)