Windows Phone 7模拟器显示水印吗?

3
Windows Phone 7仿真器是否显示屏幕右上角的水印?一开始我以为可能是嵌套的网格没有正确重叠,在右上方创建了一个细长的视觉垃圾列。但在创建新项目并放大两个垃圾区域后,它们都是数字。现有项目:"000 000 000006 001 000 00.0000",新空项目:"000 000 003296 002 001 00.0967"。这些是什么?有没有办法禁用它们的可见性?
2个回答

14

3
在 App.xaml.cs 中的 App 构造函数中生成了代码。将这些行注释掉,像这样:
public App()
{
  UnhandledException += Application_UnhandledException;

  // Uncomment to show graphics profiling information while debugging.
  if (System.Diagnostics.Debugger.IsAttached)
  {
    // Display the current frame rate counters.
    //Application.Current.Host.Settings.EnableFrameRateCounter = true;

    // Show the areas of the app that are being redrawn in each frame.
    //Application.Current.Host.Settings.EnableRedrawRegions = true;

    // Enable non-production analysis visualization mode, 
    // which shows areas of a page that are being GPU accelerated with a colored overlay.
    //Application.Current.Host.Settings.EnableCacheVisualization = true;
  }

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接