문제

How can I remove Windows phone Emulator chrome? My windows phone emulator show chrome at top right corner of emulator. I want to remove that. How can I remove?

enter image description here

I want to remove number from top right corner.

도움이 되었습니까?

해결책

Those numbers are for diagnostics whilst debugging. In your App.xaml.cs there'll be a block (in the constructor):

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

Either commenting the lien out, or setting it to false will remove the counters whilst debugging. In either circumstance, these will not be displayed when invoking your application outside of the debugger.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top