我是Windows手机开发的新手。我创建了一个Windows Phone 8应用程序。 当我在模拟器中运行应用程序时,它会在模拟器右上角显示一些符号。请在下图中找到标有红色矩形的图片。
我认为这些符号只能出现在模拟器中。现在我已经在设备上部署了应用程序。然后,我的应用程序的每一页都会出现这些符号。
请帮助我如何从我的应用程序中删除这些符号。
答案 0 :(得分:1)
转到App.xaml.cs文件。
查找此代码:
if (Debugger.IsAttached)
{
// Display the current frame rate counters.
Application.Current.Host.Settings.EnableFrameRateCounter = true;
...
注释掉
行Application.Current.Host.Settings.EnableFrameRateCounter = true;
或将其设置为false。