如何删除Windows Phone模拟器中显示的额外图像?

时间:2013-04-03 09:03:16

标签: windows-phone-8 windows-phone-8-emulator

Captured From Emulator

![在此输入图片说明]

当我运行我的应用程序时,模拟器会在右上角显示一些不需要的图像或文本

如上图所示(用红色标记表示)。

这是什么图像或文字?

我该如何删除?

1 个答案:

答案 0 :(得分:3)

这些数字是Frame rate counters。您可以在App.xaml.cs中启用/停用它们:

// Show graphics profiling information while debugging.
if (System.Diagnostics.Debugger.IsAttached)
{
    // Display the current frame rate counters.
    Application.Current.Host.Settings.EnableFrameRateCounter = true;

    // other code…
}

注释该行或将值更改为false以删除计数器。