---
title: "How to change the default page of the Silverlight application?"  
description: "How to change the default page of the Silverlight application?"  
author: "Anonymous User"  
published: 2011-08-12  
updated: 2020-09-22  
canonical: https://www.mindstick.com/interview/1141/how-to-change-the-default-page-of-the-silverlight-application  
category: "silverlight"  
tags: ["silverlight"]  
reading_time: 1 minute  

---

# How to change the default page of the Silverlight application?

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();}
```

## Answers

### Answer by 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.\
\

```
private void Application_Startup(object sender, StartupEventArgs e){   this.RootVisual = new YourPage();}
```


---

Original Source: https://www.mindstick.com/interview/1141/how-to-change-the-default-page-of-the-silverlight-application

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
