tags:

views:

196

answers:

1

When a Silverlight application is downloading you get the percentage text and the blue dots moving around it as a progress indicator. Is it possible to modify this to have a custom progress indicator instead? It would be nice to have something matching the theme of the application that will run.

+5  A: 

Yes. You can designate a loose xaml file from your website app to be displayed using the SplashScreenSource property of the asp:silverlight webcontrol (or splashScreenSouce param for the html <object> tag.) while the main xap source is being downloaded.

BC