Thursday, October 31, 2013

When you create an app for windows phone, Visual Studio adds frame rate counters to visualize rate properties. To disable those, we need to open App.xaml.cs and need to set a variable to false as seen below:

// Set it to for not to display the current frame rate counters.
Application.Current.Host.Settings.EnableFrameRateCounter = false;

All required information about these counters can be found at the address:
http://msdn.microsoft.com/en-us/library/windowsphone/develop/gg588380(v=vs.105).aspx

Posted on 6:45 PM by Erdem

No comments

http://stackoverflow.com/questions/11914562/wp7-change-application-name


You change the Title of the app in the file called WMAppmanifest.xml. Inside the App xmlns-tag theres a field for Title.

Posted on 6:44 PM by Erdem

No comments