What do the numbers mean in the upper right hand side of the emulator?

断了今生、忘了曾经 提交于 2019-12-11 09:42:10

问题


I am very new to WP development and have created my first application. When I run it, I see some data printed vertically on the emulator Screen.

What are these, and what do they indicate?

attached.

回答1:


These are performance counters for your app. Here is the image that describe them.

// Display the current frame rate counters.
// This is enabled by default in your app
Application.Current.Host.Settings.EnableFrameRateCounter = true; 

These are for monitoring your app. Like frame rates etc.For more info check this Reference.

Ctrl + F "Enable frame rate counters"

(image source)

来源:https://stackoverflow.com/questions/25462867/what-do-the-numbers-mean-in-the-upper-right-hand-side-of-the-emulator

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!