Question

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.

Était-ce utile?

La solution

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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top