我想在不使用选择模式的情况下获取第一个datagridview的值:fullselectedrow。以下示例无效。
MessageBox.Show(AppointmentGrid.SelectedRows[0].Cells[0].Value.ToString());
我收到此错误:类型为'System.ArgumentOutOfRangeException'的未处理异常
答案 0 :(得分:1)
获取DataGridView中第一个单元格的值:
var cellValue = AppointmentGrid.Rows[0].Cells[0].Value;
删除单个选定单元格的行:
AppointmentGrid.Rows.RemoveAt(AppointmentGrid.SelectedCells[0].RowIndex);
心灵;你需要做一些边界检查,这样索引不会超出范围。