2011-01-26 3 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; 
    }