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