0

Why silver light is introduced even WPF is already exist in .net?? What we can achieve with silver light where we can't with WPF??

Srikanth
  • 191
  • 4
  • 12
  • possible duplicate of http://stackoverflow.com/questions/944608/wpf-vs-silverlight – Gishu Apr 19 '10 at 05:21
  • 1
    To oversimplify silverlight is a stripped down runtime environment for rich internet applications - whereas WPF targets the rich desktop client space, with all the bells-n-whistles. Google has a lot of stuff on this topic.. – Gishu Apr 19 '10 at 05:25

2 Answers2

2

We can run it on MacOS, and in some cases on linux (moonlight project)

ppiotrowicz
  • 4,464
  • 3
  • 32
  • 46
0

Silverlight needs a much smaller .net runtime to run. WPF needs full .net runtime installed in your machine. From a web application it is easy for Silverlight to penetrate a huge percentage of userbase. Also Silverligt supports Windows and Mac out of box and some limited support for Linux through Moonlight.

Tanmoy
  • 44,392
  • 16
  • 45
  • 55