views:

38

answers:

1

Is there a DataGrid component that behaves the same in WPF and Silverlight? There are some small differences in DataGrids from MS (WPF and Silverlight Toolkits). For example, while WPF version has CanUserAddRows property, Silverlight version does not.

A: 

I gave up - there nothing like that so I have to care about differences in the code by myself.

Edit: Most of the differences can be handled by styles - simply create one DataGrid style for WPF and one for Silverlight.

Lukas Cenovsky