如何在Windows Mobile Application中获取Datagrid中的行索引

时间:2011-12-27 06:40:58

标签: windows-mobile windows-mobile-6 windows-mobile-6.1

我想在Windows Mobile Application Development中获取DataGrid的行索引。没有像Rowindex这样的属性。那我们怎样才能获得rowindex。

有人有想法吗?请分享

1 个答案:

答案 0 :(得分:0)

尝试这样的事情:

void test() {
  int rowIndex = dataGrid1.CurrentRowIndex;
  DataGridCell cell = dataGrid1.CurrentCell;
  Console.WriteLine("Current Row Number: {0}, Column Number: {1}", cell.RowNumber, cell.ColumnNumber);
  Console.WriteLine("Row {0}, Column 0 data: {1}", rowIndex, dataGrid1[rowIndex, 0]);
}