Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We are porting a WPF application to Silverlight 5 and face the following problem:

The Silverlight framework is much smaller than WPF/.Net 4.0 and has less features and classes than WPF. There are two cases:

  1. Sometimes I don't see why there is no corresponding class in Silverlight. For example the attribute class DisplayNameAttribute helps to set labels in WPF-Forms. You need this in Silverlight too. Why is it missing? Only because of size?

  2. In other cases, a class makes no sense in SL.For example since there is no Database-Connectivity in Silverlight, you don't need things like DataObjectAttribute classes.

Since we don't want to completely rewrite our WPF-code we need something like a third party Silverlight library that adds some missing classes that make sense under Silverlight (case 1). Size does not matter.

Does anybody knows such a tool?

share|improve this question

closed as not constructive by casperOne Dec 5 '12 at 13:42

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

Browse other questions tagged or ask your own question.