ac-lap
ac-lap

Reputation: 1653

How to disable page animation while loading in WP 8.1?

How can I disable the page load animation (kind of turn-style) when a new page is loaded in windows phone 8.1 app? I tired searching on the net, but I couldn't find anything useful.

Upvotes: 2

Views: 548

Answers (1)

ac-lap
ac-lap

Reputation: 1653

Got the answer

public MyPage()
{
    this.InitializeComponent();
    Frame myFrame =(Frame)Window.Current.Content;
    myFrame.ContentTransitions = null;
}

Upvotes: 2

Related Questions