What are these numbers on the right side of my Win

2019-01-15 04:59发布

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?

1条回答
爷、活的狠高调
2楼-- · 2019-01-15 05:44

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.

查看更多
登录 后发表回答