Tag: Windows Phone8

Application Class in Windows Phone 8 Project

The Application class in the Windows Phone Project performs the start-up activities of the windows phone app. The Windows Phone 8 SDK by default creates the App.xaml file which inherits from Application class. This file is created when the project is created. The App.xaml can be used to store application level resources, styles etc. whereas the App.xaml.cs file is the code behind file where the…