views:

63

answers:

2

If i include a bunch of styles that i don't use any more into my project will that increase the size of the final XAP file?

+3  A: 

Yes. It will compile into the DLL and take up space. Since XAML is XML, ZIP compresses it well but you should take any bit of unused content out.

Michael S. Scherotter
+2  A: 

Yes, the compiler does not edit the Xaml resources included in XAP, it includes them as is.

AnthonyWJones