I am new to the WPF and Silverlight and Prism 4 , Can we create an Application that is usable both in WPF and silverlight or do I have to have different projects for both? My question is Can I use Prism to create an Application that is usable both in WPF and Silverlight , If not how do I go in that direction?.

link|improve this question

62% accept rate
feedback

3 Answers

up vote 3 down vote accepted

You absolutely can use PRISM to create an application that is usable by both WPF and Silverlight. You will have to be careful how you use certain features (that don't easily cross between both), but its very doable. In fact, the stock trader sample application that comes with PRISM does this exact thing.

Here is a great article that explains how: http://msdn.microsoft.com/en-us/magazine/ee321573.aspx

link|improve this answer
Thanks Let me look at this deeper – Greens May 9 '11 at 20:14
feedback

I am not sure if Prism changes this, but the core Silverlight assemblies are different than the core .NET assemblies thus a Silverlight project will always build as a Silverlight project. If you focus on a layered web services architecture with thin clients then the maintenance of WPF and Silverlight should be minimal.

Further you can share common entity libraries between the two by creating an entity project, and then a silverlight project that contains references to your domain model classes. In this way identical domain model assemblies can be built for both Silverlight and .NET core applications and they can even be passed back and forth to web services utilizing WCF services.

link|improve this answer
1  
Any Framework that can Guide me to that? – Greens May 9 '11 at 19:42
Good question actually... I figured this out on my own in an architecture document I wrote for a company I no longer work for. Look at this thread as it seems smarter people than myself explain it much better than I do. stackoverflow.com/questions/721375/… – maple_shaft May 9 '11 at 19:51
feedback

Have a look at this. It seems Microsoft is trying to solve this too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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