Windows应用商店应用:更改AppBar按钮的图标?

Min*_*amy 2 windows-8 winrt-xaml windows-store-apps

我想在我的Windows应用商店应用中更改AppBar按钮的图标.

我发现AppBar按钮的XAML标记如下所示:

<Style x:Key="PicturesAppBarButtonStyle"
       TargetType="ButtonBase" 
       BasedOn="{StaticResource AppBarButtonStyle}">
    <Setter Property="AutomationProperties.AutomationId"
            Value="PicturesAppBarButton"/>
    <Setter Property="AutomationProperties.Name" 
            Value="Pictures"/>
    <Setter Property="Content" Value="&#xE158;"/>
</Style> 
Run Code Online (Sandbox Code Playgroud)

内容值&#xE158;是什么意思?是否有任何内置图标的参考?

另外我如何显示自己的不同图标?

小智 6

内容是使用的字体"Segoe UI Symbol"的Unicode字符编号.

请参阅按钮符号列表中的符号 列表