在开发wp7应用的时候,每次调试的时候,模拟器和手机右侧都会出现一个奇怪的侧边栏。
我怎样才能隐藏这个烦人的酒吧?它是干什么用的?
除了 Igor Kulman 的回答,您还可以更改EnableFrameRateCounter
App.xaml.cs 文件的构造函数中的属性:
Application.Current.Host.Settings.EnableFrameRateCounter = false;
这样您仍然可以在 Debug 中运行。
它向您显示有用的调试信息,请参阅http://www.pchenry.com/Home/tabid/36/EntryId/348/How-to-turn-off-the-WP7-performance-glyphs-in-your-emulator。 aspx进行解释。
如果您不想显示它,请运行它Release
而不是应用程序,Debug
但我真的不推荐它。