调试时 "Form" 上的这些黑底数字是什么?

What are these Black-Backgrounded numbers on the "Form" when debugging?

我在调试 C# Windows 时得到以下信息 Windows Store application in Visual Studio 2015 on Windows 10:

这些数字是多少?代码中根本没有数字。它应该只是它后面的图像。

这些数字是与 EnableFrameRateCounter 相关的额外调试信息。

如果您查看 App.xaml.cs 代码,您会发现 FrameRateCounter 已针对调试模式以编程方式初始化:

#if DEBUG
if (System.Diagnostics.Debugger.IsAttached)
{
   this.DebugSettings.EnableFrameRateCounter = true;
}
#endif