Loop a DataGrid
I am usin compactframework c# vs 2005.
How can we loop a Datagrid in compactframework.I need to get a cell value
I am binding a datatable to datagrid. In datagrid I have a text box column. user will enter the value in this column. I need to开发者_如何转开发 get the value of this column of all rows.
Thanks
Try:
myDGrid[rowIndex, colIndex];
精彩评论