如何从Windows Phone 8中的应用程序中删除数字中的符号

时间:2013-12-02 05:46:21

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

我是Windows手机开发的新手。我创建了一个Windows Phone 8应用程序。 当我在模拟器中运行应用程序时,它会在模拟器右上角显示一些符号。请在下图中找到标有红色矩形的图片。   enter image description here

我认为这些符号只能出现在模拟器中。现在我已经在设备上部署了应用程序。然后,我的应用程序的每一页都会出现这些符号。

请帮助我如何从我的应用程序中删除这些符号。

1 个答案:

答案 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。