DatagridView复选框列始终为空

时间:2014-10-02 00:38:53

标签: c# datagridview datagridviewcheckboxcell

我有一个奇怪的问题。 基本上我有一个datagridview和一个按钮。当我单击此按钮时,它会检查列1s值的所有行 - 复选框列。然后根据当前的情况将其设置为true / false。

多数民众赞成。

然而,我有另一个按钮来处理这些被勾选的行。我点击它,它只将第一行标识为勾选。其余的现在显然是空的。?

那么,我怎样才能在数据网格视图中以编程方式设置复选框列的值,然后再次读取它,因为根据我的结果,我显然已经离开了标记。

这会设置勾选框,我可以看到它们,手动取消勾选等等。

foreach (DataGridViewRow row in dgv.Rows)
        {
            var ch1 = new DataGridViewCheckBoxCell();
            ch1 = (DataGridViewCheckBoxCell)row.Cells[0];

            if (ch1.Value == null)
                ch1.Value = false;
            switch (ch1.Value.ToString())
            {
                case "True":
                    ch1.Value = false;
                    break;
                case "False":
                    ch1.Value = true;
                    break;
            }
        }

然后检查值的下一个按钮就是找到空值

foreach (DataGridViewRow row in rows)
            {
                var ch1 = new DataGridViewCheckBoxCell();
                ch1 = (DataGridViewCheckBoxCell)row.Cells[0];

                if (ch1.Value == null)
                    ch1.Value = false;
                switch (ch1.Value.ToString())
                {
                    case "True":
                        ch1.Value = true;
                        break;
                    case "False":
                        ch1.Value = false;
                        break;
                }
                var val = row.Cells["EbayListingID"].Value.ToString();
                if (ch1.Value.ToString() == "true") continue;
                var listing = dsEntities.EbayListings.First(x => x.EbayListingID.ToString() == val);
                SubmitListingForReview(listing, false);
            }

1 个答案:

答案 0 :(得分:0)

首先,

if (ch1.Value.ToString() == "true") continue;

为什么字符串常量为" true",但不是" True"?

其次,在下一个按钮点击处理程序中,它是什么"行"?

foreach (DataGridViewRow row in rows)

我尝试使用此代码并且工作正常:

private void button1_Click(object sender, EventArgs e)
        {
            foreach (DataGridViewRow row in dataGridView1.Rows)
            {
                var ch1 = new DataGridViewCheckBoxCell();
                ch1 = (DataGridViewCheckBoxCell)row.Cells[0];

                if (ch1.Value == null)
                    ch1.Value = false;
                switch (ch1.Value.ToString())
                {
                    case "True":
                        ch1.Value = false;
                        break;
                    case "False":
                        ch1.Value = true;
                        break;
                }
            }
        }

private void button2_Click(object sender, EventArgs e)
        {
            foreach (DataGridViewRow row in dataGridView1.Rows)
            {
                var ch1 = new DataGridViewCheckBoxCell();
                ch1 = (DataGridViewCheckBoxCell)row.Cells[0];

                if (ch1.Value == null)
                    ch1.Value = false;
                switch (ch1.Value.ToString())
                {
                    case "True":
                        ch1.Value = true;
                        break;
                    case "False":
                        ch1.Value = false;
                        break;
                }
                var val = row.Cells[1].Value;
                if (ch1.Value.ToString() == "True") continue;
                MessageBox.Show("1");
            }
        }