What is Black-Backgrounded Data on Form when debugging?

I get the following when debugging a C # Windows Store app in Visual Studio 2015 on Windows 10:

enter image description here

What are these numbers? There are no numbers in the code at all. It should be the image that stands behind it only.

+3


source to share


1 answer


These numbers are additional debugging information related to the EnableFrameRateCounter .

If you look at your App.xaml.cs code, you can see that FrameRateCounter is initialized programmatically for debug mode:



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

      

+6


source







All Articles