Reputation: 11625
The default Silverlight project template creates a file called "App.xaml". What is this file used for?
Upvotes: 13
Views: 5293
Reputation: 40255
There are a couple different uses for this file. Essentially it is a derived class of Application.
Upvotes: 20
Reputation: 6406
xaml stand for extensible application markup language. This is just an XML file that allows you to declare the UI for Silverlight and even .Net objects
app.xaml allows you to declare resources that are shared across the application. Also the app.xaml.cs contains the application level events:
Upvotes: 3