App.xaml

•App.xaml and App.xaml.cs – The App.xaml is required to configure your Silverlight application. You can also declare resources that will be available in all pages of your application.
•App.xaml is a file used by Silverlight applications to declare shared resources like brushes, various style objects etc.
• The code behind file of app.xaml is used to handle global application level events like Application_Startup, Application_Exit and Application_UnhandledException. (Similar to Global.asax file for ASP.NET applications)

Comments

Popular Posts