InterviewSolution
| 1. |
How Can You Change The Startup Page Of Silevrlight Application? |
|
Answer» Open the App.xaml.cs file example: if we have a file known as MainPage.xaml, a class known as MainPage will be there in MainPage.xaml.cs. private void Application_Startup(OBJECT sender, StartupEventArgs E) { this.RootVisual = NEW MainPage(); } Open the App.xaml.cs file example: if we have a file known as MainPage.xaml, a class known as MainPage will be there in MainPage.xaml.cs. private void Application_Startup(object sender, StartupEventArgs e) { this.RootVisual = new MainPage(); } |
|