1

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

我怎样才能隐藏这个烦人的酒吧?它是干什么用的?

在此处输入图像描述

4

2 回答 2

3

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

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

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

于 2012-12-04T21:32:53.300 回答
2

它向您显示有用的调试信息,请参阅http://www.pchenry.com/Home/tabid/36/EntryId/348/How-to-turn-off-the-WP7-performance-glyphs-in-your-emulator。 aspx进行解释。

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

于 2012-12-04T21:14:29.547 回答