2011-01-26 13 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; 
    } 
関連する問題