Reputation: 1653
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
Reputation: 1653
Got the answer
public MyPage()
{
this.InitializeComponent();
Frame myFrame =(Frame)Window.Current.Content;
myFrame.ContentTransitions = null;
}
Upvotes: 2