c#中如何用datagridview刪除空白行

c#
小億
198
2024-03-27 18:35:32

在C#中,可以通過(guò)遍歷DataGridView的行,并判斷每一行的值是否為空來(lái)刪除空白行。以下是一個(gè)示例代碼:

private void RemoveEmptyRows(DataGridView dgv)
{
    List<DataGridViewRow> rowsToRemove = new List<DataGridViewRow>();

    foreach (DataGridViewRow row in dgv.Rows)
    {
        bool isEmpty = true;

        foreach (DataGridViewCell cell in row.Cells)
        {
            if (cell.Value != null && !string.IsNullOrWhiteSpace(cell.Value.ToString()))
            {
                isEmpty = false;
                break;
            }
        }

        if (isEmpty)
        {
            rowsToRemove.Add(row);
        }
    }

    foreach (DataGridViewRow rowToRemove in rowsToRemove)
    {
        dgv.Rows.Remove(rowToRemove);
    }
}

你可以在需要?jiǎng)h除空白行的地方調(diào)用這個(gè)方法,傳入要操作的DataGridView對(duì)象即可。

0