1

如何删除 Windows phone Emulator chrome?我的 windows phone 模拟器在模拟器的右上角显示 chrome。我想删除它。我怎样才能删除?

在此处输入图像描述

我想从右上角删除数字。

4

1 回答 1

4

这些数字用于调试时的诊断。在您的 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;

评论留置权或将其设置为 false 将在调试时删除计数器。在任何一种情况下,在调试器之外调用应用程序时都不会显示这些内容。

于 2012-09-17T14:16:07.927 回答