Interview Question in SilverLight


 

Interview Question :: how to start a silverlight application with Visual Studio?

 Can you elaborate how to start a silverlight application with Visual Studio? 

by ksk
VoteNowAnswers to "how to start a silverlight application with Visual Studio?"
1.Create a project:Here you just start your visual studio, Select your programming language [C#/VB], Choose Silverligh Template give the name and save it
 
2. Adding SIlverlight COntrols:One thing is happened here, controls cannot dragged onto the designer, you can draw/drag the controls on XAML page. 
  • Naming to control:In this step just give the name to your silverligt control like for Button you can give name as : btnmySilverligtButton
  • Adding event handlers to Silverlight controls:Here you can give the event handlers like for click etc.
  • Testing Silverlight applications in Visual Studio:Now just press F5 and test your application 
by ksk