R – DataGridView in .NET Compact Framework 3.5

compact-framework

I know that there is a DataGrid control in CF. However, is there a DataGridView control in .NET Compact Framework 3.5?

Best Answer

According to the documentation: http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.aspx

The DataGridView is not supported in CF, as it is not listed in the version information section at the bottom of the page.

Related Topic