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:
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?
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?