我有一个桌面应用程序,它在 Datagridview 中显示数据,但是在单击 Datagridview 的标题时显示此错误:- 索引超出范围。必须是非负数且小于集合的大小。参数名称:索引
自动选择网格中的第一行为什么会发生自动选择没有排序发生。如何排序。请帮助我摆脱这个错误。非常感谢你。
private void GV_investigate_CellClick(object sender, DataGridViewCellEventArgs e)
{
int oid = int.Parse(GV_investigate.SelectedRows[0].Cells[0].Value.ToString());
}
private void GV_investigate_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e)
{
GV_investigate.ClearSelection();
}