I was recently responding to a thread on XDA Forums as someone wanted to make a button in their project and have a transition/fade to another “Page”. So, thought I would share that quick little snippet below.
<Button x:Name=”btnNameHere” Content=”My Button” Margin=”0,15,0,15″>
<Button.Transitions>
<TransitionCollection>
<EntranceThemeTransition />
</TransitionCollection>
</Button.Transitions>
</Button>
This is intended for your XAML File, it should work with C#, C++, and probably VB Projects.

