1.

How To Change The Default Page Of Silver Light Application?

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.

Example:
private void Application_Startup(object sender,StartupEventArgs e)
 {
this.RootVisual = new YourPage();
 }

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.

Example:
private void Application_Startup(object sender,StartupEventArgs e)
 {
this.RootVisual = new YourPage();
 }



Discussion

No Comment Found