Windows phone 8 如何在windows phone 8中从应用程序中删除数字符号

Windows phone 8 如何在windows phone 8中从应用程序中删除数字符号,windows-phone-8,windows-phone-8-emulator,Windows Phone 8,Windows Phone 8 Emulator,我不熟悉windows phone开发。我已经创建了一个WindowsPhone8应用程序当我在emulator中运行应用程序时,它会在emulator右上角显示一些符号。请在下图中找到标有红色矩形的部分。 我认为这些符号只在模拟器中出现。现在我已经在设备上部署了应用程序。然后,这些符号也会出现在我的应用程序的每一页中。 请帮助我如何从我的应用程序中删除这些符号。转到App.xaml.cs文件 查找以下代码: if (Debugger.IsAttached) { // Display

我不熟悉windows phone开发。我已经创建了一个WindowsPhone8应用程序当我在emulator中运行应用程序时,它会在emulator右上角显示一些符号。请在下图中找到标有红色矩形的部分。

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


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

转到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。

转到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。

谢谢..我也在搜索此答案。谢谢..我也在搜索此答案。