我有一个带有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)) { // ... } }