双击左边一行数据,然后相应的信息显示在右边相应的控件中!!求详细代码!!谢谢各位大神
2个回答
展开全部
在datagridview双击事件中获取选中行的数据,然后赋值到右边相应的控件里
private void dataGridView1_DoubleClick(object sender, EventArgs e)
{
Student s = new Student();
s.Id = dataGridView1.CurrentRow.Cells[0].Value.ToString();
s.Name = dataGridView1.CurrentRow.Cells[1].Value.ToString();
s.Birthday = dataGridView1.CurrentRow.Cells[3].Value.ToString();
s.Sex = dataGridView1.CurrentRow.Cells[2].Value.ToString();
tbID.Text = s.Id;
textBox2.Text = s.Name;
textBox3.Text = s.Birthday;
cbbSex.SelectedItem = s.Sex;
}
这只是其中一些属性,其他自己改改
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询