To disable Frame Rate Counter in Windows 8 Applications there should enter next line in MainPage.xaml.cs on public MainPage() method :
public MainPage()
{
this.InitializeComponent();
Application.Current.DebugSettings.EnableFrameRateCounter = false;
}
No comments:
Post a Comment