What are these numbers on the right side of my Windows Phone Silverlight app?

后端 未结 1 1941
再見小時候
再見小時候 2020-12-06 09:10

I\'ve got a Windows Phone Silverlight app, and there are some numbers to the right when I run the emulator:

\"en

相关标签:
1条回答
  • 2020-12-06 09:33

    That's the frame rate counter for the emulator / phone that is on by default whenever you debug. To turn it off, go to App.xaml.cs and comment this line out:

    Application.Current.Host.Settings.EnableFrameRateCounter = true;
    

    For more information on what the numbers mean (they can be pretty helpful for tracking app performance), see Jeff Wilcox's post on this.

    0 讨论(0)
提交回复
热议问题