What are these numbers on the right side of my Win

2019-01-15 05:44发布

问题:

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

What do they mean, and how can I hide them?

回答1:

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.