uwp Segoe MDL2 图标,为什么没有 bell/alert 图标

uwp Segoe MDL2 icons, why no bell/alert icon

我在 Segoe MDL2 图标中搜索了 bell/alert/notification 图标。我找不到它,是只创建自己的铃铛图标选项还是有其他选择?

RingerBadge12 (EDAC) 看起来像 bell/notification 图标吗?

否则你可以看看ActionCenterNotification (E7E7)

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

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

P.S。如果对您有帮助,请点赞:)