InterviewSolution
Saved Bookmarks
| 1. |
How Can Be The Default Page Settings Changed For A Silverlight Page ? |
|
Answer» You can change the default page SETTINGS of a silverlight page. This can be done by setting the RootVisual property in the Application_Startup event of the App.xaml FILE. This is done as follows: PRIVATE void Application_StartUp(OBJECT sender, StartupEventArgs e) { this.RootVisual = new MainPage(); } You can change the default page settings of a silverlight page. This can be done by setting the RootVisual property in the Application_Startup event of the App.xaml file. This is done as follows: Private void Application_StartUp(object sender, StartupEventArgs e) { this.RootVisual = new MainPage(); } |
|