如何在MouseClick事件中处理CheckBox?

时间:2014-10-05 15:27:45

标签: c# checkbox datagridview

我有一个问题伙计,我希望你帮助我..

我想将所选数据行显示到我的文本框和复选框,我遇到了CheckBox问题而且错误无法将类型字符串转换为bool

保存到数据库后,我将Checkbox设置为true或false,这样它只会在我的Datagridview中显示True或False not Checked,而Checkbox是选项,如果它经历了Case ...

private void dataGridView1_CellContentClick(object sender,DataGridViewCellEventArgs e)

    {
        foreach (Control control in this.Controls)
        {
            if (control is CheckBox)
                ((CheckBox)(control)).Checked = true;

        }

        foreach (Control control in this.Controls)
        {
            if (control is CheckBox)
                ((CheckBox)(control)).Checked = false;
        }
    }

在我的鼠标点击事件

private void dataGridView1_MouseClick(object sender,MouseEventArgs e)

    {
        txtFam.Text = dataGridView1.SelectedRows[0].Cells[0].Value.ToString();
        txtName.Text = dataGridView1.SelectedRows[0].Cells[1].Value.ToString();
        txtSevereheadache.Checked =dataGridView1.SelectedRows[0].Cells[2].Value.ToString();
        txtBlurringvision.Checked = dataGridView1.SelectedRows[0].Cells[3].Value.ToString();
        txtAbdominal.Checked = dataGridView1.SelectedRows[0].Cells[4].Value.ToString();
        txtSeverevomiting.Checked = dataGridView1.SelectedRows[0].Cells[5].Value.ToString();
        txtBreathingdifficulty.Checked = dataGridView1.SelectedRows[0].Cells[6].Value.ToString();
        txtConvulsion.Checked = dataGridView1.SelectedRows[0].Cells[7].Value.ToString();
        txtEdema.Checked = dataGridView1.SelectedRows[0].Cells[8].Value.ToString();
        txtVaricosities.Checked = dataGridView1.SelectedRows[0].Cells[9].Value.ToString();
        txtFeverchills.Checked = dataGridView1.SelectedRows[0].Cells[10].Value.ToString();
        txtPain.Checked = dataGridView1.SelectedRows[0].Cells[31].Value.ToString();

1 个答案:

答案 0 :(得分:0)

您正在尝试将字符串值分配给布尔属性。 E.g。

txtSevereheadache.Checked = dataGridView1.SelectedRows[0].Cells[2].Value.ToString();

首先使用调试并查看dataGridView1.SelectedRows[0].Cells[2].Value的类型,您可能已将Value投射到bool。所以:

txtSevereheadache.Checked = (bool) dataGridView1.SelectedRows[0].Cells[2].Value;


如果由于某种原因dataGridView1.SelectedRows[0].Cells[2].Value不是bool类型,则应使用Boolean.Parse方法将字符串解析为布尔值。请在MSDN上查看。

所以,比如:

txtSevereheadache.Checked = Boolean.Parse(dataGridView1.SelectedRows[0].Cells[2].Value.ToString());


对于Convert.ToBoolean(string)Boolean.Parse(string)之间的差异,请参阅this主题。