Hello All,
Nice Day,
I want to set a different page as my startup page in a WPF application...
I tried with the following, But I could not able to get the
this.RootVisual using System.Windows; // Application, StartupEventArgs
namespace SilverlightApplication
{
public partial class App : Application
{
public App()
{
InitializeComponent();
}
private void Application_Startup(object sender, StartupEventArgs e)
{
// Specify the main application UI
this.RootVisual = new Page();
}
}
}