Can you build an entire application in Silverlight? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T12:10:03Zhttp://stackoverflow.com/feeds/question/370346http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/370346/can-you-build-an-entire-application-in-silverlight4Can you build an entire application in Silverlight?pearcewg2008-12-16T02:55:31Z2008-12-18T06:42:00Z
<p>Is it possible to build a good medium to full sized application using just silverlight as a host?</p>
<p>A few things that would be needed:
- dynamic pages (one silverlight "screen" can switch between screens, like a normal app.
- similar to a java applet which launches from the browser</p>
<p>I see that Telerik sells RadControls for WPF...but this is only useful (to me) if Silverlight can be a rich client platform through the web.</p>
http://stackoverflow.com/questions/370346/can-you-build-an-entire-application-in-silverlight/370382#3703827Answer by AJ for Can you build an entire application in Silverlight?AJ2008-12-16T03:25:53Z2008-12-16T03:25:53Z<p>Although still a somewhat immature platform, Silverlight 2.0 supports many of the features that I would expect from a platform needed to create full sized applications.</p>
<ul>
<li>Data access through web services and local data/object query support with Linq</li>
<li>Many feature rich controls such as datagrid, treeview, etc</li>
<li>A very usable subset of the CLR (common language runtime)</li>
<li>Access to restricted local storage on the client machine</li>
<li>It is cross platform</li>
<li>There are already some great add-ons, like Telerik and the <a href="http://www.codeplex.com/Silverlight" rel="nofollow">Silverlight Control Toolkit</a></li>
</ul>
<p>For your specific scenario, Microsoft has published a tutorial on <a href="http://silverlight.net/learn/tutorials/multipageapps_vb.aspx" rel="nofollow">Multi-page Applications</a></p>
http://stackoverflow.com/questions/370346/can-you-build-an-entire-application-in-silverlight/372784#3727841Answer by Guy for Can you build an entire application in Silverlight?Guy2008-12-16T21:25:25Z2008-12-16T21:25:25Z<p>Absolutely. I've been looking into this and believe that it's as easy to do in Silverlight as it is in any other language. Remember that Silverlight 2 uses C# 3.0 and from that you can build anything that's not included in the Silverlight version of the CLR. Also, the fact that Microsoft gives you access to the .NET source code means that you can compile the missing parts of the .NET libraries with your application. (No idea about the licensing issues with that though.)</p>
http://stackoverflow.com/questions/370346/can-you-build-an-entire-application-in-silverlight/377063#3770631Answer by ur for Can you build an entire application in Silverlight?ur2008-12-18T06:42:00Z2008-12-18T06:42:00Z<p>I've seen a presentation of a full featured CRM application two days ago. Although it's still alpha: It looks and feels like any office application. I don't know details but for me it's a proof of concept.</p>