When I clicked Application Bar Button in WP8, the button background changes to be PhoneAccentColor. Is it possible to change its color when I clicked it (pressed state)? I use a global AppBar and it's in App.xaml
<Application.Resources>
<ResourceDictionary x:Name="myDict">
<!-- Application Bar template !-->
<shell:ApplicationBar x:Key="GlobalAppBar" IsVisible="True" IsMenuEnabled="True" BackgroundColor="#f28624" >
<shell:ApplicationBarIconButton IconUri="/Assets/AppBar/feature.email.png" Text="new message" Click="ApplicationBarNewMessage_Click" />
<shell:ApplicationBar.MenuItems>
<shell:ApplicationBarMenuItem Text="users" Click="Users_Click"/>
<shell:ApplicationBarMenuItem Text="settings" Click="Settings_Click"/>
<shell:ApplicationBarMenuItem Text="about" Click="About_Click"/>
</shell:ApplicationBar.MenuItems>
</shell:ApplicationBar>
</ResourceDictionary>
</Application.Resources>
Thank you :)