What is Black-Backgrounded Data on Form when debugging?
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 to share