8

我在隐藏具有0in 值的行时遇到问题DataGridView

foreach (DataGridViewRow row in this.taggGrid.Rows)
{
    if (Convert.ToString(row.Cells[4].Value).Equals(0))
    {
        row.Visible = false;
    }
}

我要隐藏的行仍然显示。

4

1 回答 1

5

(由 OP 在编辑中回答。请参阅没有答案的问题,但问题已在评论中解决(或在聊天中扩展)

OP写道:

回答:自己解决了:

foreach (DataGridViewRow dr in taggGrid.Rows)
        {
            if (dr.Cells[4].Value.ToString() == "False")
            {
                dr.Visible = false;
            }
        }
于 2015-01-26T16:17:22.550 回答