如何检索新行的值?我可以使用哪个动作/事件来获取这些值?
(e.Row.Cells["COLUMN NAME"].Value.ToString());
答案 0 :(得分:2)
如果我理解你想要检索DataGridView的一个单元格的内容,一个例子并使用事件rowValidated,请参阅下面的示例。
private void dataGridView1_RowValidated(object sender, DataGridViewCellEventArgs e)
{
if (this.dataGridView1.CurrentRow != null)
{
this.textBox1.Text = this.dataGridView1.CurrentRow.Cells["Column1"].Value.ToString();
}
}
如果你的意思是另一个,可能会解释vouoi会得到什么。
问候。