"& # XE100" Values ​​in StandardStyles

Sorry for the confusing name, but I'm not sure what to name them. I say this:

<Style x:Key="SkipBackAppBarButtonStyle" TargetType="Button" BasedOn="{StaticResource AppBarButtonStyle}">
    <Setter Property="AutomationProperties.AutomationId" Value="SkipBackAppBarButton"/>
    <Setter Property="AutomationProperties.Name" Value="Skip Back"/>
    <Setter Property="Content" Value="&#xE100;"/> <!-- This one -->
</Style>

There are a few of them in StandardStyles.xaml, but I have no idea how this works, any idea?

Thank!

+3
source share
1 answer

These are Unicode characters in XML / hex format in the Segoe UI font. Mostly glyph type icons. The WinRT XAML Toolkit has a Style Browser app that displays all the icons, including the full set of 150 icons that Tim Heyer shared in his blog post .

+7
source

All Articles