private void btnRight_Click(object sender, EventArgs e)
{
List<object> destList = new List<object>();
foreach (DataGridViewRow row in dgv1.SelectedRows)
destList.Add(row.DataBoundItem);
dgv2.DataSource = destList;
}
i debug but it not run to this sentence :"destList.Add(row.DataBoundItem);" and then dgv2 doesn't have data.
Please give me solution.