2

这样我就可以从一个 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中删除空行?

4

1 回答 1

6

你可以创建一个方法

private void clearGrid(DataGridView view) {
    for (int row = 0; row < view.Rows.Count; ++row) {
        bool isEmpty = true;
        for (int col = 0; col < view.Columns.Count; ++col) {
            object value = view.Rows[row].Cells[col].Value;
            if (value != null && value.ToString().Length > 0) {
                isEmpty = false;
                break;
            }
        }
        if (isEmpty) {
            // deincrement (after the call) since we are removing the row
            view.Rows.RemoveAt(row--);
        }
    }
}

并将您的 6 个 DataGridView 中的每一个传递给该方法。

clearGrid(PrimaryRadGridView);
于 2012-10-18T10:18:24.157 回答