Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

enter image description here

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

like image 522
Mike Pateras Avatar asked Mar 22 '11 15:03

Mike Pateras


1 Answers

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.

like image 72
Gergely Orosz Avatar answered Oct 01 '22 01:10

Gergely Orosz