3

从模拟器捕获

![在此处输入图像描述]

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

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

这是什么图片或文字?

我怎样才能删除这个?

4

1 回答 1

3

这些数字是帧速率计数器。您可以在以下位置启用/禁用它们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以删除计数器。

于 2013-04-03T09:05:42.560 回答