Explain with example how to change the default page of the silverlight application.
Answer / Sakshi Rani
To change the default page of a Silverlight application, update the `StartupUri` attribute in the AppManifest.xml file: `<Deployment xmlns="http://schemas.microsoft.com/client/2007/deployment" xmlns:xdt="http://schemas.microsoft.com/Xml-Data/Commands"> <Application Id="MyApp" xdt:Transform="Replace"> <Setup> ... </Setup> <DeploymentGroup> ... </DeploymentGroup> <ApplicationLifetime xmlns="http://schemas.microsoft.com/client/2007/windowslive/application"> <EntryPoint> MyApplication.exe </EntryPoint> <SplashScreen ImageUri="SplashScreenImage.jpg" /> <StartupUri>NewDefaultPage.xaml</StartupUri> </ApplicationLifetime> </Application></Deployment>"`
| Is This Answer Correct ? | 0 Yes | 0 No |
Can you name built-in layout panels you have been using with silverlight?
give an example of creating button in xaml ?
Give an example of how an AppManifest.xml file looks like.
What are the programming languages in which you can implement behavior of silverlight application?
What are the programming language that can be used to write the backend of the silverlight application?
What are the features of silverlight plug-ins?
Can Silverlight be used along with different browsers and operating systems?
What is the difference between silverlight and flash regarding animations?
What is clientbin folder in silverlight application?
What is isolated storage in silverlight?
What are the different classes used in visual tree?
Expression studio orvisual studio, which one better to use for developing silverlight application?