Как получить rowindex в Datagrid в приложении Windows Mobile
Я хочу получить индекс строки DataGrid в Windows Mobile Application Development. Нет такого свойства, как Rowindex. Тогда как мы можем получить rowindex.
У кого-нибудь есть идея? Поделись, пожалуйста
1 ответ
Попробуйте что-то вроде этого:
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]);
}