0
我想在Windows Mobile應用程序開發中獲取DataGrid的行索引。沒有像Rowindex這樣的屬性。那麼我們如何獲得rowindex。如何在Windows Mobile應用程序的Datagrid中獲取rowindex
任何人有想法?請分享
我想在Windows Mobile應用程序開發中獲取DataGrid的行索引。沒有像Rowindex這樣的屬性。那麼我們如何獲得rowindex。如何在Windows Mobile應用程序的Datagrid中獲取rowindex
任何人有想法?請分享
嘗試這樣:
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]);
}