These are actually frame rate counter numbers to aid in debugging. They can be easily switched off if you do not want them on the screen, especially if you want to capture the screen. To turn it off, just do the following:
- In Visual Studio, open up the project's App.xaml.cs file in the editor.
- Look for the following lines:
if (System.Diagnostics.Debugger.IsAttached)
{
this.DebugSettings.EnableFrameRateCounter = true;
} - Change them to the following:
if (System.Diagnostics.Debugger.IsAttached)
{
this.DebugSettings.EnableFrameRateCounter = false;
} - Run and debug the app again.
The frame rate numbers are no longer displayed.
No comments:
Post a Comment