How to remove debug line in windows emulator?

Possible duplicate:
WP7 RTM Emulator displays framecounter and dx data on rights - is this the default value?

I want to take a good screenshot of my application and send it to a friend, but I got a dumb debugging line in the upper right corner. How to remove it?

It seems that these are numbers and shift, if you use acceleration, for example

+4
source share
1 answer

Try running it as non-debugging as you can:

  • Use release build instead of debug build
  • Use Ctrl-F5 instead of F5 to run (so there is no debugger)

IIRC, which will prevent the display of diagnostic information. You probably only need to complete one of these steps, but I could not tell you that because of this.

+15
source

Source: https://habr.com/ru/post/1436687/


All Articles