vote up 5 vote down star
1

What is the difference between WPF and Silverlight application ? Are they the same ?

flag

47% accept rate

4 Answers

vote up 1 vote down

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.

See this for further information: Silverlight "WPF/E" first steps: Getting started with simple analog clock, Introduction - What is WPF/E?

Matthias

link|flag
vote up 15 vote down

WPF is based off of the desktop CLR which is the full version of the CLR.

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.

link|flag
CLR=Common Language Runtime, the interpreter that runs all .NET code. BCL = Base Class Library, the .NET framework of classes that are installed along with the CLR and are available for use by all .NET code. – Will Mar 10 at 13:10
vote up 1 vote down

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.

WIKI

link|flag
vote up 9 vote down

WPF is essentially the replacement to Winforms in that it is a desktop application platform built on the .Net (3+) platform.

Silverlight represents a subset of WPF that is delivered through a browser plug-in, much like Flash/Flex.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.