What is the difference between WPF and Silverlight application ? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T21:04:36Z http://stackoverflow.com/feeds/question/629927 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/629927/what-is-the-difference-between-wpf-and-silverlight-application 5 What is the difference between WPF and Silverlight application ? Rakesh Agarwal 2009-03-10T12:35:03Z 2009-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#629936 9 Answer by cletus for What is the difference between WPF and Silverlight application ? cletus 2009-03-10T12:37:00Z 2009-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#629938 1 Answer by hmcclungiii for What is the difference between WPF and Silverlight application ? hmcclungiii 2009-03-10T12:38:12Z 2009-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#629942 15 Answer by JaredPar for What is the difference between WPF and Silverlight application ? JaredPar 2009-03-10T12:38:55Z 2009-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#629945 1 Answer by Mudu for What is the difference between WPF and Silverlight application ? Mudu 2009-03-10T12:39:21Z 2009-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>