top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

in windows phone Emulator corner number is there what is that?

+2 votes
283 views

I am developing windows phone application i had a doubt regarding wp and emulator during runtime in the display rightside corner sequence of number is displaying what is that use or how to hide ???

posted Nov 19, 2014 by Saravanan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

yes the Name is Frame Rate Counters

USE OF FRAME RATE COUNTERS:

enter image description here

Next to you can either enable or disable the FRAME RATE COUNTERS using the following code in App.Xaml.cs

Default the Frame rate counter is enable only

  if (System.Diagnostics.Debugger.IsAttached)
        {
           // Display the current frame rate counters.
             Application.Current.Host.Settings.EnableFrameRateCounter = true;   
         }

Diable the Frame Rate Counters

Comment out the line of code that enables the frame rate counters as shown in the following code.

    // Display the current frame rate counters.
    //Application.Current.Host.Settings.EnableFrameRateCounter = true;
answer Nov 20, 2014 by Jdk
oh its working good.. thank you for the information
Similar Questions
+1 vote

The windows phone emulator wasn't able to ensure the virtual machine was running
Something happened while starting a virtual machine: Emulator WVGA 512MB. Could not initilize.
Not enough memory in the system to start virtual machine Emulator WVGA 512.MB XXXXXXX with ram size 512 megabytes

Any give me a appropriate solution to resolve this.

...