List of Files Created by a new Windows 8 Project

When we create a new Windows 8 (Modern UI) style App, the following files are created by default

1. Package.appxmanifest

  • This file describes the information related to the App like the App Name , Description , Logo , Capabilities etc

2. Assets

  • Image files (PNG) used by the App which will be displayed in the start screen. This also includes StoreLogo.PNG for your App identification in Windows Store and also Splash screen image file.

3. App.xaml and code behind file

  • This file contains the necessary information and handles various events that relate to the life cycle of the Windows 8 Modern UI App .
  • You can also change the start page of the Windows 8 Modern UI App from this page.

4. StandardStyles.xaml

  • This file includes some of the standard style used by the Windows 8 App.

5. MainPage.xaml

  • The first Page of the Application.

6. AssemblyInfo.cs

  • Contains the version number and assembly information of the Sourcecode.

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...