Martin
Martin

Reputation: 40583

How to make an animated transition between two pages?

I am building a Windows 8.1 app and I wondering how to show an animated transition between two pages. Right now I am simply using the Navigate method to change page but there's no animated transition.

this.Frame.Navigate(typeof(MyPage));

Thanks!

Upvotes: 1

Views: 880

Answers (1)

srka
srka

Reputation: 802

This is how MyPage should look like:

<Page> 
    <Page.Transitions>
        <TransitionCollection>
            <EntranceThemeTransition/>
        </TransitionCollection>
    </Page.Transitions>
....
</Page>

Upvotes: 6

Related Questions