.NET Tutorials, Forums, Interview Questions And Answers
Welcome :Guest
 
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!




Find questions, FAQ's and their answers related to .NET, C#, Vb.Net, Sql Server and many more.


Post New Question Subscribe to Interview Questions
 
Quick Links For Interview Questions Categories:
ASP.NetWindows Application  .NET Framework  C#  VB.Net  ADO.Net  
Sql Server  SharePoint  Silverlight  OOPs  JQuery  JavaScript/VBScript
BiztalkPatten/PracticesIISWCFWPFWWF
NetworkingAptitudeOthers  All    
 

Silverlight Interview Questions and Answers

Name the Methods of a MediaElement object in SilverLight?

Author: Syed Shakeer Hussain          Posted Date: August 29, 2010    Category: Silverlight     Points: 10

Play, Pause, and Stop are the methods of MediaElement.

Name the LayOut Management controls in SilverLight?

Author: Syed Shakeer Hussain          Posted Date: August 29, 2010    Category: Silverlight     Points: 10

1)Canvas
2)Grid
3)StackPanel

How many Types of Brushes are there in Sivlerlight?

Author: Syed Shakeer Hussain          Posted Date: August 29, 2010    Category: Silverlight     Points: 10

The different types of brushes in Silverlight are:-

1)SolidColorBrush
2)LinearGradientBrush
3)RadialGradientBrush
4)ImageBrush
5)VideoBrush.


Is there a way to generate more then on .xap file from a same silverlight application.

Author: Abhay Yadav          Posted Date: June 25, 2010    Category: Silverlight     Points: 10

Since for each .xap file we have to create a new silverlight application.

What kind of audio video formats are supported in Silverlight?

Author: Amit Mehra          Posted Date: November 10, 2009    Category: Silverlight     Points: 10

Silverlight supports Windows Media Audio and Video (WMA, WMV7-9) and VC-1, as well as MP3 audio.

How many ways you can display text using Silverlight?

Author: Amit Mehra          Posted Date: November 10, 2009    Category: Silverlight     Points: 10

Silverlight supports displaying static pre formatted text that is comprised out of glyph elements and also dynamic text that uses TextBlock. With glyphs, one needs to position the characters individually while TextBlock supports simple layout.

How does XAP work in silverlight?

Author: Venkat          Posted Date: August 26, 2009    Category: Silverlight     Points: 10

Once you have created the .xap file (explained below), the Silverlight 2 or 3 plug-in downloads the file and runs it in a separate work space.

How do I use a .xap file in silverlight?

Author: Venkat          Posted Date: August 26, 2009    Category: Silverlight     Points: 10

A .xap file is used to contain and transfer the assemblies and resources of a managed code application. This managed code application must be run within the Silverlight 2 browser plug-in.

What are the files contained in the .xap file in Silverlight?

Author: Venkat          Posted Date: August 26, 2009    Category: Silverlight     Points: 10

A basic xap file in silverlight will have an assembly related to specific code for the application, an application manifest file and any additional assemblies need to run the application. At a minimum, two files are needed, the application manifest file and the application assembly.

For example:

AppManifest.xaml

MyPianoV2.dll

What is contained in the AppManifest.xaml file in silverlight?

Author: Venkat          Posted Date: August 26, 2009    Category: Silverlight     Points: 10

The AppManifest.xaml file contains the deployment details needed to run the silverlight application.

Basic example:

<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" EntryPointAssembly="MyPianoV2" EntryPointType="MyPianoV2.App" RuntimeVersion="2.0.30523.4"> <Deployment.Parts> <AssemblyPart x:Name="MyPianoV2" Source="MyPianoV2.dll" /> </Deployment.Parts></Deployment>



Hall of Fame    Twitter   Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend