Reputation: 7135
Looking at the silverlight business application, it seems to add a number of libraries specific to Input Forms and the like.
Regards, Jacques
Upvotes: 1
Views: 133
Reputation: 93601
You can re-zip the XAP file, but that is only a 20% saving generally at best.
Using the PRISM pattern and a modular approach, we managed to get our initial page load down to around 150Kb (the entire app is over 4Mb). The rest of the modules continue to stream down in the background so we get something on-screen very fast.
If you intend to build a large application, PRISM and/or MEF is the way to go. It has an additional learning curve but it results in very modular apps (great for team development/maintenance).
Upvotes: 1
Reputation: 53
Here are some tips and tricks to try to make your XAP smaller. Like removing references you don't really use and re-zipping the XAP. Hope it helps!
http://forums.silverlight.net/t/21548.aspx
Upvotes: 1