The RootVisual property of Application_Startup event in App.xaml file needs to be set to change the default Silverlight application page. The following code snippet sets the property.
private void Application_Startup(object sender, StartupEventArgs strtevntarg)
{
this.RootVisual = new YourPage();
}