这样我就可以从一个 datagridview 中删除空行。
bool Empty = true;
for (int i = 0; i < PrimaryRadGridView.Rows.Count; i++)
{
Empty = true;
for (int j = 0; j < PrimaryRadGridView.Columns.Count; j++)
{
if (PrimaryRadGridView.Rows[i].Cells[j].Value != null && PrimaryRadGridView.Rows[i].Cells[j].Value.ToString() != "")
{
Empty = false;
break;
}
}
if (Empty)
{
PrimaryRadGridView.Rows.RemoveAt(i);
}
}
我得到了大约 6 个数据网格视图,我想删除所有的空行。
有没有办法从界面中的所有datagridviews中删除空行?