从 DataGridView 列中获取值,最后为空行 c#
Posted
技术标签:
【中文标题】从 DataGridView 列中获取值,最后为空行 c#【英文标题】:Get values from a DataGridView Column, empty row at the end c# 【发布时间】:2020-05-06 10:22:56 【问题描述】:我正在使用一个允许我向 DataGridView 添加一些行的应用程序:
如您所见,最后一行是空的,这是为了允许添加更多行。 好的,当我尝试获取“Codigo”列中的所有值时出现问题:
(DB)335T1613 (DB)335T1642 (DB)335T1644最后一行是空的,所以没有值,我得到以下错误:
新的未确认行不能删除
这是我的代码,我试图在其中获取这些值:
private void buttonAccept_Click(object sender, EventArgs e)
/*if (dataGridViewTennetPaint.Rows(dataGridViewTennetPaint.Rows.Count - 1).IsNewRow)
dataGridViewTennetPaint.Rows.RemoveAt(dataGridViewTennetPaint.Rows.Count - 1);
*/
dataGridViewTennetPaint.Rows.RemoveAt(dataGridViewTennetPaint.Rows.Count - 1);
string data = string.Empty;
int indexOfYourColumn = 0;
int cont = 0;
foreach (DataGridViewRow row in dataGridViewTennetPaint.Rows)
//if (!row.Cells[indexOfYourColumn].Equals(null) || row.Cells[indexOfYourColumn] != null || row.Cells[indexOfYourColumn].Value.ToString() != "" || row.Cells[indexOfYourColumn].Value.ToString().Equals("") || row.Cells[indexOfYourColumn].Equals("") || row.Cells[indexOfYourColumn].Value.ToString() != "")
if (row.Cells[indexOfYourColumn].Value != System.DBNull.Value)
data = row.Cells[indexOfYourColumn].Value.ToString();
cont++;
System.Diagnostics.Debug.WriteLine("Data contiene ... " + data + " cont: " + cont);
【问题讨论】:
代码中的哪一行给出了错误? 如果您允许用户“添加”行,则网格AllowUserToAddRows
属性设置为true
。将此属性设置为true
,您不能删除“最后一个”新行。幸运的是,每一行都有一个名为IsNewRow
的布尔属性。因此,在 foreach
循环遍历网格的行……添加一个检查这个“新行”……if (!row.IsNewRow) ... ;
【参考方案1】:
首先,您需要从 DataGrid 中删除最后一行,因为它不再使用。
请将 CanUserAddRows 设置为 false。
CanUserAddRows="False"
使用的电池 BindingList 绑定到 DataGrid 并从 TableView 中获取所有行。
【讨论】:
以上是关于从 DataGridView 列中获取值,最后为空行 c#的主要内容,如果未能解决你的问题,请参考以下文章