我想在Windows Mobile Application Development中获取DataGrid的行索引。没有像Rowindex这样的属性。那我们怎样才能获得rowindex。
有人有想法吗?请分享
答案 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]);
}