Google News
logo
Silverlight - Interview Questions
What are the different important files that are used in Silverlight?
There are several files that are required to be used in silverlight to make it function properly and to include the properties of applications together :
 
AppManifest.XAML : It consist the list of all the entry points including the class and assembly. This file can be taken and hosted in any HTML file using an object tag.
 
The code will be given as :
<object data="data:application/x-silverlight-2," type="application/x-silverlight-2"   
width="100%" height="100%"><param name="source"   
value="MySilverLightControl.xap"/></object> ​
 
Silverlight.js and CreateSilverlight.js : contains the initialization of the Silverlight plug-in that will be used in HTML pages.
Advertisement