What is missing from Silverlight 2's version of .Net? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T21:17:33Zhttp://stackoverflow.com/feeds/question/345494http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/345494/what-is-missing-from-silverlight-2s-version-of-net0What is missing from Silverlight 2's version of .Net?Guy2008-12-05T23:26:14Z2009-02-26T13:45:12Z
<p>I've just started developing in Silverlight 2 and have not run into any "missing parts" of .Net that I was using in the full version. Have you found anything to be missing from Silverlight 2's version of .Net that (1) you missed, (2) really needed, or (3) had to abandon Silverlight 2 because it was missing?</p>
http://stackoverflow.com/questions/345494/what-is-missing-from-silverlight-2s-version-of-net/364200#3642001Answer by bendewey for What is missing from Silverlight 2's version of .Net?bendewey2008-12-12T21:28:25Z2008-12-12T21:28:25Z<p>I definately miss the VisualBrush, I got really use to that for Reflections and stuff and I miss that. I also really miss the Bitmap Effects. Dropshadows are crucial for creating RIAs and the solutions I've seen for Dropshadows are really bad hacks.</p>
<p>This is mostly from the XAML point of view though.</p>
http://stackoverflow.com/questions/345494/what-is-missing-from-silverlight-2s-version-of-net/373330#3733301Answer by AJ for What is missing from Silverlight 2's version of .Net?AJ2008-12-17T00:54:05Z2008-12-17T00:54:05Z<p>The brushes have also been a pain in the neck for me. Although the ImageBrush derives from the TileBrush, it doesn't actually have the ability to tile it's fill. This makes texture mapping very difficult. In addition, there are no base classes or interfaces available to create custom brush classes, so we just have to wait for this feature to become available in a future release. Grrrrr.....</p>
<p>Other than that though, I have found the feature set to be very rich. They've even added some great features like Dependency Properties.</p>
http://stackoverflow.com/questions/345494/what-is-missing-from-silverlight-2s-version-of-net/590606#5906061Answer by pearcewg for What is missing from Silverlight 2's version of .Net?pearcewg2009-02-26T13:45:12Z2009-02-26T13:45:12Z<p>Consuming datasets/datatables, to bind them to objects or just use them.</p>
<p>I know they are missing on purpose, to reduce the deployed footprint of Silverlight, but that is a very important part of the framework, even in 2009.</p>
<p>System.Data mini version!</p>