![在此输入图片说明]
当我运行我的应用程序时,模拟器会在右上角显示一些不需要的图像或文本
如上图所示(用红色标记表示)。
这是什么图像或文字?
我该如何删除?
答案 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
以删除计数器。