У меня есть 2 DatagridView
, и у меня есть тот же столбец в datagridView1
и dataGridView2
, теперь я хочу сравнить каждую строку Column [ID]
в datagridView
1 и 2, если эти ID
существуют в 2 столбцах,Column["Names"]
и ["Age"]
из datagridView2
переходят на dataGridView1
.
Это только у меня есть, но оно не показывается.
for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
for (int a = 0; a < dataGridView2.Rows.Count; a++)
{
if (dataGridView1.Rows[i].Cells[0].Value == dataGridView2.Rows[i].Cells[0].Value)
{
dataGridView1.Rows[i].Cells[2].Value = dataGridView2.Rows[a].Cells[2].Value.ToString();
dataGridView1.Rows[i].Cells[3].Value = dataGridView2.Rows[a].Cells[3].Value.ToString();
i++;
a++;
}
}
}