gpt4 book ai didi

c# - 排序 - DataGridView 的标题异常

转载 作者:太空宇宙 更新时间:2023-11-03 23:18:50 25 4
gpt4 key购买 nike

我在 Windows 窗体中对 datagridview 的标题进行排序时遇到问题...

这是我在 CellContentClick 上的代码

 private void dgvApprovazione_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (dgvApprovazione.Rows[e.RowIndex].Cells[e.ColumnIndex] is DataGridViewLinkCell)
{//Process link on string
System.Diagnostics.Process.Start(dgvApprovazione.Rows[e.RowIndex].Cells[e.ColumnIndex].Value as string);
}
}

我的数据 GridView 结果.. enter image description here

但是当我点击标题栏时我有这个异常(exception): enter image description here

如何解决?

最佳答案

您应该检查单击的单元格是否不在标题行中,否则当您尝试访问该行的单元格时,您会收到 ArgumentOutOfRangeException,因为您试图在 处获取单元格RowIndex = -1.

Index was out of range. Must be non-negative and less than the size of the collection.

您需要检查是否 (e.RowIndex>=0)

关于c# - 排序 - DataGridView 的标题异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36157050/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com