See the full list of icons (found in StandardLayout.xaml) in the Segoe UI interface symbol along with their unicode values ββat http://kishore1021.files.wordpress.com/2012/09/appbar.png . Under each icon you can see the name and unicode values.
To use one of these styles, you can simply use the following Xaml code in your code.
<Button Style="{StaticResource RemoveAppBarButtonStyle}"/>
Replace the word next to the StaticResource with the button you want.
When customizing the displayed button, you can get your own style from the base style and use setters to set properties with your desired values, as in the following code. Here I show the globe icon and the text below the icon is βGet location.β
<Style x:Key="GlobeAppBarButtonStyle" TargetType="Button" BasedOn="{StaticResource AppBarButtonStyle}"> <Setter Property="Content" Value="Ĩ" /> <Setter Property="AutomationProperties.Name" Value="Get Location> </Style>
source share