danielrvt-sgb
danielrvt-sgb

Reputation: 1138

Windows phone 7 debug sidebar

When developing a wp7 app, every time I debug, a weird sidebar appears in the right side of the emulator and phone.

How can I hide this annoying bar? What is it for?

enter image description here

Upvotes: 1

Views: 296

Answers (2)

Michael Itzoe
Michael Itzoe

Reputation: 1959

In addition to Igor Kulman's answer, you can also change the EnableFrameRateCounter property in the constructor of the App.xaml.cs file:

Application.Current.Host.Settings.EnableFrameRateCounter = false;

This way you'll can still run in Debug.

Upvotes: 3

Igor Kulman
Igor Kulman

Reputation: 16359

It shows you useful debuging info, see http://www.pchenry.com/Home/tabid/36/EntryId/348/How-to-turn-off-the-WP7-performance-glyphs-in-your-emulator.aspx for explanation.

If you do not want to have it displayed, run it app in Release instead of Debug but I would not really recommend it.

Upvotes: 2

Related Questions