单选按钮值显示在datagridview中

时间:2014-05-10 12:56:51

标签: c# ms-access datagridview radio-button

当我从访问db中单击任何单元格数据时,如何从访问db

获取radiobutton值
textBox1.Text = dataGridView1.CurrentRow.Cells[1].Value.ToString();
 textBox2.Text = dataGridView1.CurrentRow.Cells[3].Value.ToString();
 comboBox1 .Text = dataGridView1.CurrentRow.Cells[4].Value.ToString();
 dateTimePicker1.Text = dataGridView1.CurrentRow.Cells[8].Value.ToString();

它的作品  例如,我想从数据库到radiobutton显示性别

enter image description here

1 个答案:

答案 0 :(得分:0)

永远记住:在datagridview中,数据值始终存储为System.Object ..当您需要正确使用此数据时,您需要转换为盒装数据格式..

出于这个原因,您可以使用.ToString()方法将单元格数据转换为字符串..

因此,当您需要radiobutton值(它的布尔值 - 1-0或true-false)时,您需要将值转换为布尔值:

YourRadioButton.Checked = Convert.ToBoolean(YourDataGridview.CurrentRow.Cells[YourBooleanCellID].Value);