关于datagridview双击行的问题!
在winform中使用datagridview,绑定数据后,双击某行弹出另外一个窗体Form2,并把其中某列的数值传递给Form2,代码怎么写啊?下面是我测试取值的代码:...
在winform中使用datagridview,绑定数据后,双击某行弹出另外一个窗体Form2,并把其中某列的数值传递给Form2,代码怎么写啊?
下面是我测试取值的代码:
private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{
string tt=this.dataGridView1.Rows[e.ColumnIndex].Cells[e.RowIndex].Value.ToString()
MessageBox.Show(tt);
}
}
运行出现以下错误提示:
索引超出范围。必须为非负值并小于集合大小。参数名: index
请高手指点,谢谢! 展开
下面是我测试取值的代码:
private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{
string tt=this.dataGridView1.Rows[e.ColumnIndex].Cells[e.RowIndex].Value.ToString()
MessageBox.Show(tt);
}
}
运行出现以下错误提示:
索引超出范围。必须为非负值并小于集合大小。参数名: index
请高手指点,谢谢! 展开
1个回答
展开全部
晕!Rows的索引当然应该是RowIndex
正确代码:
Form1的:
private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{
String value = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
Form2 frm = new Form6();
frm.SetValue(value);
frm.Show();
}
Form2的:
internal void SetValue(string value)
{
MessageBox.Show(value);
}
正确代码:
Form1的:
private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{
String value = dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
Form2 frm = new Form6();
frm.SetValue(value);
frm.Show();
}
Form2的:
internal void SetValue(string value)
{
MessageBox.Show(value);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询