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