I develop my first application for WP7. I have two questions :
How can I get page navigation effect like "Settings" in WP7 ? When I navigate to my applications pages, there's no effect. How can I set an effect like WP7 native applications ?
I create button with Image and text in like this :
<Button x:Name="btnNew" Padding="0"> <StackPanel Orientation="Vertical"> <Image Source="/Images/Icons/appbar.favs.rest.png" /> <TextBlock Text="New" Style="{StaticResource PhoneTextSmallStyle}" Margin="12,0" /> </StackPanel> </Button>
But when I hold my finger on my button, a white rectangle appear. Do I have to implement event to change my image and text color like WP7 native applications ? Which event one ?