I have installed Win 10 Preview and VS 2015. I created a new uap blank app and ran it and I get a Window with two numbers on the top left, eg 000 000 If I add a button to the app (and move it away from the obscuring numbers) and then click the button, the numbers change in what seems to me a random way, eg 020 001.
What is going on?
I have now found that these numbers disappear if you set
this.DebugSettings.EnableFrameRateCounter = false
in OnLaunched. This is explained here
Not that this means anything to me.
It's the frame counter turned on by the following code snippet in your App.xaml.cs:
#if DEBUG
if (System.Diagnostics.Debugger.IsAttached)
{
this.DebugSettings.EnableFrameRateCounter = true;
}
#endif
source: https://social.msdn.microsoft.com/Forums/en-US/a33a634c-5c68-44b4-8fca-8eb5a263d145/misterious-numbers-being-displayed-in-upper-left-and-right-corners-of-the-screen?forum=winappswithcsharp
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With