关于dataGridView中行的问题
请问如何判断dataGridView中某行的内容为空,多谢 --------------------编程问答-------------------- 是说判断该行的所有列都为空? --------------------编程问答-------------------- 我想请教个问题:怎样能够给DataGridView的第一列添加每行的名字,谢谢! --------------------编程问答-------------------- bool isNullRow;for (int i = 0; i < this.dataGridView1.Rows.Count; i++)
{
isNullRow = true;
foreach (DataGridViewCell cell in this.dataGridView1.Rows[i].Cells)
{
if (cell.EditedFormattedValue != null && string.IsNullOrEmpty(cell.EditedFormattedValue.ToString()) == false)
{
isNullRow = false;
break;
}
}
if (isNullRow)
{
//当前行所有列为空.
}
} --------------------编程问答--------------------
循环行信息,再添加到列名! --------------------编程问答-------------------- 顶三楼写法。。。。。。。。。。
补充:.NET技术 , C#