Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between WPF and Silverlight application?

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

like image 213
Rakesh Agarwal Avatar asked Mar 10 '09 12:03

Rakesh Agarwal


People also ask

Does WPF use Silverlight?

Summary: 1. Silverlight is simply a subset of WPF.

What is replacing WPF?

Universal Windows Platform. Both Windows Forms and WPF are old, and Microsoft is pointing developers towards its Universal Windows Platform (UWP) instead. UWP is an evolution of the new application platform introduced in Windows 8 in 2012.

What is WPF used for?

Windows Presentation Foundation (WPF) is a UI framework that creates desktop client applications. The WPF development platform supports a broad set of application development features, including an application model, resources, controls, graphics, layout, data binding, documents, and security.


1 Answers

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.

like image 118
JaredPar Avatar answered Nov 03 '22 00:11

JaredPar