亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

c#中怎么用datagridview刪除空白行

c#
小億
224
2024-01-12 04:30:10
欄目: 編程語言

要刪除DataGridView中的空白行,可以按照以下步驟進行操作:

  1. 遍歷DataGridView的所有行:

    for (int i = 0; i < dataGridView1.Rows.Count; i++)
    {
        // ...
    }
    
  2. 在每一行中檢查所有單元格的值是否為空:

    bool isEmptyRow = true;
    for (int j = 0; j < dataGridView1.Columns.Count; j++)
    {
        if (dataGridView1.Rows[i].Cells[j].Value != null && !string.IsNullOrWhiteSpace(dataGridView1.Rows[i].Cells[j].Value.ToString()))
        {
            isEmptyRow = false;
            break;
        }
    }
    
  3. 如果行為空白行,則刪除該行:

    if (isEmptyRow)
    {
        dataGridView1.Rows.RemoveAt(i);
    }
    

完整的代碼示例:

for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
    bool isEmptyRow = true;
    for (int j = 0; j < dataGridView1.Columns.Count; j++)
    {
        if (dataGridView1.Rows[i].Cells[j].Value != null && !string.IsNullOrWhiteSpace(dataGridView1.Rows[i].Cells[j].Value.ToString()))
        {
            isEmptyRow = false;
            break;
        }
    }
    if (isEmptyRow)
    {
        dataGridView1.Rows.RemoveAt(i);
    }
}

注意:在刪除行后,行索引會改變,因此需要遞減i的值,以便正確遍歷所有行。

0
安徽省| 宣汉县| 丹寨县| 沛县| 长宁县| 慈利县| 邵阳市| 香格里拉县| 米林县| 梁河县| 遂川县| 襄垣县| 师宗县| 大余县| 伊金霍洛旗| 离岛区| 隆回县| 阿城市| 濮阳市| 通州市| 盐边县| 沙田区| 渭南市| 清河县| 夹江县| 武陟县| 洪湖市| 南雄市| 昌都县| 札达县| 蒙山县| 富阳市| 邓州市| 江达县| 大足县| 望谟县| 麻城市| 铜山县| 兴文县| 滨海县| 凤山县|