2011-01-26 85 views
3

Windows Phone 7仿真器是否在顯示器右上方顯示水印?Windows Phone 7仿真器顯示水印嗎?

起初我以爲它可能是嵌套網格不正確重疊,並在右上角創建一個薄的垂直視覺垃圾列。但是,在創建一個新項目並放大兩個垃圾區域後,事實證明它們都是數字。

現有項目:"000 000 000006 001 000 00.0000"
新的空項目:"000 000 003296 002 001 00.0967"

這些是什麼?任何方式來禁用他們的知名度?

回答

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; 
    } 
相關問題