Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I remove the debug string in the windows emulator? [duplicate]

Possible Duplicate:
WP7 RTM Emulator is displaying the framecounter and dx info on the rightside - is this the default?

I want to take a nice screenshot of my app and send to a friend, but I got the silly debug string in the upper right corner. How to I remove it?

Seems to be numbers and shift if using acceleration for instance

like image 732
Jason94 Avatar asked Dec 07 '22 11:12

Jason94


1 Answers

Try running it as non-debug as you can:

  • Use a release build instead of a debug build
  • Use Ctrl-F5 instead of F5 to launch (so there's no debugger attached)

IIRC, that will prevent the diagnostic information from showing. It's probably that you only need to take one of these steps, but I couldn't tell you which offhand.

like image 137
Jon Skeet Avatar answered Dec 10 '22 03:12

Jon Skeet