How to change the default page of silver light application?

 Posted by Niladri.Biswas on 7/21/2012 | Category: Silverlight Interview questions | Views: 3163 | Points: 40
Answer:

To change the default page of silver light application, you need to set the Root Visual property inside the Application_Startup event of App.xaml file.
Eg:
private void Application_Startup(object sender, StartupEventArgs e)

{
this.RootVisual = new YourPage();
}


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response