How to change the default page of the Silverlight application? Anonymous User 12-Aug-2011 2738 1 Answers Last updated:9/22/2020 1:32:30 PM
Anonymous User 12-Aug-2011 To change the default page of Silverlight application, you need to set the RootVisual property inside the Application_Startup even of App.xaml file. private void Application_Startup(object sender, StartupEventArgs e){ this.RootVisual = new YourPage();}
Anonymous User
To change the default page of Silverlight application, you need to set the RootVisual property inside the Application_Startup even of App.xaml file.