Windows phone 7调试侧栏

时间:2012-12-04 21:11:27

标签: debugging windows-phone-7

在开发wp7应用程序时,每次调试时,模拟器和手机的右侧都会出现一个奇怪的侧边栏。

如何隐藏这个恼人的酒吧?它的用途是什么?

enter image description here

2 个答案:

答案 0 :(得分:3)

除了Igor Kulman的回答,您还可以更改App.xaml.cs文件的构造函数中的EnableFrameRateCounter属性:

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

这样你仍然可以在Debug中运行。

答案 1 :(得分:2)

它显示了有用的调试信息,有关说明,请参阅http://www.pchenry.com/Home/tabid/36/EntryId/348/How-to-turn-off-the-WP7-performance-glyphs-in-your-emulator.aspx

如果您不想显示它,请在Release而不是Debug中运行该应用,但我不会真的推荐它。