What do the numbers mean in the upper right hand s

2019-08-12 05:04发布

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?

Image attached.

1条回答
劳资没心,怎么记你
2楼-- · 2019-08-12 05:52

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"

enter image description here (image source)

查看更多
登录 后发表回答