Does DataGrid support CE 5.0 Compact Framework.NET?

I am trying to get a DataGrid under CE 5.0 / .NET CF 2.0 which the user can edit. The document at http://msdn.microsoft.com/en-us/library/ms838165.aspx indicates that some environments do not support editing -

Since there is no built-in support for editing in the DataGrid control, this must be done manually

Do I need to implement this ugly example - which does not work very well, as shown?

The documentation is not clear which .NET features are available on which platform.

+3
source share
5 answers

, . MSDN DataGrid, , Pocket PC Smartphone. CE, , , , .

Eric Hartwell DataGrid, CF datagrid CodeProject.

, , Resco ComponentOne, .

+2

, DataGrid . , , .

, .

+1
+1

http://msdn.microsoft.com/en-us/library/ms838165.aspx , , .

DataTable dataTable = (DataTable)grdOrders.DataSource;
DataView dataView = dataTable.DefaultView;

DataView dataView = (DataView)itemdataentryGrid.DataSource;
DataTable dataTable = dataView.Table;
+1

, -, . , 1.0. CF , , -, ....: (

That day I learned a very important lesson: don't expect anything from FF to be in CF (more precisely, check before quoting!).

0
source

Source: https://habr.com/ru/post/1697067/


All Articles