What is the difference between WPF and Silverlight application ? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T21:04:36Zhttp://stackoverflow.com/feeds/question/629927http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/629927/what-is-the-difference-between-wpf-and-silverlight-application5What is the difference between WPF and Silverlight application ? Rakesh Agarwal2009-03-10T12:35:03Z2009-03-10T12:39:21Z
<p>What is the difference between WPF and Silverlight application ? Are they the same ?</p>
http://stackoverflow.com/questions/629927/what-is-the-difference-between-wpf-and-silverlight-application/629936#6299369Answer by cletus for What is the difference between WPF and Silverlight application ? cletus2009-03-10T12:37:00Z2009-03-10T12:37:00Z<p>WPF is essentially the replacement to Winforms in that it is a desktop application platform built on the .Net (3+) platform.</p>
<p>Silverlight represents a subset of WPF that is delivered through a browser plug-in, much like Flash/Flex.</p>
http://stackoverflow.com/questions/629927/what-is-the-difference-between-wpf-and-silverlight-application/629938#6299381Answer by hmcclungiii for What is the difference between WPF and Silverlight application ? hmcclungiii2009-03-10T12:38:12Z2009-03-10T12:38:12Z<blockquote>
<p>Silverlight (codenamed WPF/E) is a cross-platform, cross-browser, browser plugin which contains WPF-based technology (including XAML)[17] that provides features such as video, vector graphics, and animations to multiple operating systems including Windows Vista, Windows XP, and Mac OS X, with Microsoft sanctioned 3rd party developers working ports for Linux distributions.[18] Specifically, it is currently provided as an add-on for Mozilla Firefox, Internet Explorer 6 and above, and Apple Safari. Silverlight and WPF only share the XAML presentation layer.</p>
</blockquote>
<p><a href="http://en.wikipedia.org/wiki/Windows%5FPresentation%5FFoundation" rel="nofollow">WIKI</a></p>
http://stackoverflow.com/questions/629927/what-is-the-difference-between-wpf-and-silverlight-application/629942#62994215Answer by JaredPar for What is the difference between WPF and Silverlight application ? JaredPar2009-03-10T12:38:55Z2009-03-10T12:38:55Z<p>WPF is based off of the desktop CLR which is the <em>full</em> version of the CLR.</p>
<p>Silverlight is based on a much smaller and more compact CLR which provides a great experience but does not have the full breadth of CLR features. It also has a much smaller version of the BCL. </p>
http://stackoverflow.com/questions/629927/what-is-the-difference-between-wpf-and-silverlight-application/629945#6299451Answer by Mudu for What is the difference between WPF and Silverlight application ? Mudu2009-03-10T12:39:21Z2009-03-10T12:39:21Z<p>Silverlight is a subset of WPF. Once it was known as WPF/E (WPF everywhere). In fact, the base framework is similar, but not the same.</p>
<p>See this for further information: <a href="http://dotnetslackers.com/articles/silverlight/SilverlightFirstStepsAnalogClock.aspx" rel="nofollow"> Silverlight "WPF/E" first steps: Getting started with simple analog clock, Introduction - What is WPF/E?</a></p>
<p>Matthias</p>