2

このようにして、1つの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つのdatagridviewを取得しましたが、すべての空の行を削除したいと思います。

インターフェイスのすべてのデータグリッドビューから空の行を削除する方法はありますか?

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 に答える