c# – 如何通过列名称获取DataGridView的单元格值?

前端之家收集整理的这篇文章主要介绍了c# – 如何通过列名称获取DataGridView的单元格值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个带有DataGridView的WinForms应用程序,DataSource是一个DataTable(从sql Server填充),它的列有一个xxx.以下代码引发了“ArgumentException”未被处理的异常.不能找到名为xxx的列.
foreach (DataGridViewRow row in Rows)
{
    if (object.Equals(row.Cells["xxx"].Value,123))

可以通过列名称获取单元格值吗?

解决方法

DataGridViewColumn对象具有一个名称(仅在表单设计器中显示)和一个HeaderText(在列顶部的GUI中显示)属性.您的示例中的索引器使用列的Name属性,因此,因为您说这不工作,我假设您真的试图使用列的标题.

没有什么内置的,做你想要的,但它很容易添加.我会使用扩展方法使其易于使用:

public static class DataGridHelper
{
    public static object GetCellValueFromColumnHeader(this DataGridViewCellCollection CellCollection,string HeaderText)
    {
        return CellCollection.Cast<DataGridViewCell>().First(c => c.OwningColumn.HeaderText == HeaderText).Value;            
    }
}

然后在你的代码中:

foreach (DataGridViewRow row in Rows)
{
    if (object.Equals(row.Cells.GetCellFromColumnHeader("xxx").Value,123))
    {
        // ...
    }
 }
原文链接:https://www.f2er.com/csharp/92838.html

猜你在找的C#相关文章