Search Results

0
votes

Silverlight 2 and large canvases?

Watch out: the maximum size of a Silverlight canvas is 32767 points. This is because the size of UIElements is not stored as floats as it is in WPF, but in 32 bit quantities of which 16 bits form t …
1
vote

Using Silverlight 2 for short audio caching

Some comments: From MSDN: Try to limit the number of MediaElement o …
19
votes

Are there any “undocumented features” in Silverlight?

Things we found out during Silverlight development (...and after googling for a long while). Whether those are features, or something else is left as an opinion for the reader: All th …
1
vote

Reduce XAP Size Setting - What’s the Benefit ?

A browser caches by URL, so by splitting your application into a part which changes frequently and a part which will probably stay the same for a long time (the Linq part) and which might be shared …
0
votes

Binary serialization of Silverlight XAML object

If parsing is really the problem, it might help to use pre-compiled XAMLs called 'BAML'. This is a binary representation of the XAML file. Since the binary format has a much much cheaper parser ins …