标签: c# windows-phone-8 windows-phone-8.1
在Windows Phone 8.1应用中加载新页面时,如何禁用页面加载动画(转动样式)?我厌倦了在网上搜索,但我找不到任何有用的东西。
答案 0 :(得分:2)
得到了答案
public MyPage() { this.InitializeComponent(); Frame myFrame =(Frame)Window.Current.Content; myFrame.ContentTransitions = null; }