Asked by:
Strange Text to the right hand side of my screen!

Question
-
Hi, Can anyone offer me some advice, when deploying my app or even when creating a blank sliverlight app to either the emulator or the phone I see strange text to the right hand side of the screen. Does anyone know what is causing it.. The text consist of the following, three 000 in red followed by 001 in red after a space then 003296 002 001 00.0967 in white and runs vertically down the screen. Regards DarrenTuesday, January 18, 2011 9:33 PM
All replies
-
Hi Darren,
These are frame rate counters used to monitor performance. Details here.
Jeff Wilcox – Frame rate counters in Windows Phone
Tuesday, January 18, 2011 9:37 PM -
You can back out of it and then relaunch the app from within the emulator, however you will loose connection with the debugger. I do this most of the time anyways just because I find it annoying.
Tuesday, January 18, 2011 10:00 PM -
Cheers for the tip Works like a charm DarrenTuesday, January 18, 2011 10:24 PM
-
If you don't want them there, you can disable them by changing this line of code in your app.xaml.cs
Application.Current.Host.Settings.EnableFrameRateCounter = true/false;
Or use the suggestions in Jeff's post.
Tuesday, January 18, 2011 10:26 PM -
If you really don't want to see it, comment out this line in the app.xaml.cs file
Application.Current.Host.Settings.EnableFrameRateCounter = true;
edit: How the hell did I miss Mick's post an hour before this one...Tuesday, January 18, 2011 11:21 PM