Google News
logo
Silverlight - Interview Questions
Describe the different XAML files generated when a new project in Silverlight Visual Studio is created
The different XAML files generated when a new project in Silverlight Visual Studio is created include :
 
App.xaml : A file that is utilized in order to declare shared resources such as brushes, different style objects, etc. and to handle various global application events at different levels. The following events are created when using the App.xaml.cs file :

Application_Startup
 
Application_Exit
 
Application_UnhandledException
 
ReportErrorToDOM
 
MainPage.xaml / Page.xaml : This file is used as a default page by the Silverlight application especially when a Silverlight application is running.
Advertisement