将单元格值从1数据网格传递到另一个数据网格

时间:2016-02-08 10:26:51

标签: c# datagridview

我有一个datagridview的窗体,当我双击一条记录时,整行被复制到另一个datagridview

这是

的代码
        {
        string strCon = "Data Source=*********\\MSSQL2014;Initial Catalog=Artikelen;Persist Security Info=True;User ID=sa;Password=*******";
        string strSQL = "select Artikelcode, Omschrijving, Verkoop_BTW_in, Verkoop_BTW, Verkoop_BTW_in from Artikelen";
        SqlDataAdapter sda = new SqlDataAdapter(strSQL, strCon);
        SqlCommandBuilder commandBuilder = new SqlCommandBuilder(sda);

        // Populate a new data table and bind it to the BindingSource.
        DataTable dt = new DataTable();
        sda.Fill(dt);
        dbBindSource.DataSource = dt;
        // finally bind the data to the grid
        DGVParent.DataSource = dbBindSource;
        string sEmpDetailsToUpdate = DGVParent[1, DGVParent.CurrentRow.Index].Value.ToString();
        //label1.Text = sEmpDetailsToUpdate + " aangekocht";
        foreach (DataGridViewColumn DGV_Parents_Column in DGVParent.Columns)
        {
            DGVChild.Columns.Add((DataGridViewColumn)DGV_Parents_Column.Clone());
        }
        DataGridViewRow row = new DataGridViewRow();
        for (int iCnt = 0; iCnt <= DGVParent.Rows.Count - 1; iCnt++)
        {
            if (DGVParent.Rows[iCnt].Cells[1].Value.ToString() == (sEmpDetailsToUpdate))
            {
                row = (DataGridViewRow)DGVParent.Rows[iCnt].Clone();
                int iColIndex = 0;
                foreach (DataGridViewCell cell in DGVParent.Rows[iCnt].Cells)
                {
                    row.Cells[iColIndex].Value = cell.Value;
                    iColIndex += 1;
                }
                DGVChild.Rows.Add(row);
                break;      // NO MATCHES FOUND. BAIL OUT.
            }
        }
        DGVChild.Focus();  // SET FOCUS ON THE CHILD.
    }

这是在mousedoubleclick事件中声明的。

问题1是,每当我双击一行时,它总是第一个被复制的记录。在数据库中有451条记录。

我的计划是,如果我双击前记录201,则记录201被复制,但不是那种情况。

问题2和3我稍后会问,我认为当问题1解决时问题10和2将自动解决。

任何人都可以帮助我,我绝望了

2 个答案:

答案 0 :(得分:0)

您的代码中存在许多问题。请尝试使用CellMouseDoubleClick事件:

private void DGVParent_CellMouseDoubleClick(Object sender, DataGridViewCellMouseEventArgs e)
{
    if (e.RowIndex < 0)
        return;

    if (DGVChild.Columns.Count != DGVParent.Columns.Count)
    {
        DGVChild.Columns.Clear();
        foreach (DataGridViewColumn parentColumn in DGVParent.Columns)
        {
            DGVChild.Columns.Add((DataGridViewColumn)parentColumn.Clone());
        }
    }

    var parentRow = DGVParent.Rows[e.RowIndex];
    var childRow = (DataGridViewRow)parentRow.Clone();
    int iColIndex = 0;
    foreach (DataGridViewCell cell in parentRow.Cells)
    {
        row.Cells[iColIndex++].Value = cell.Value;
    }
    DGVChild.Rows.Add(childRow);

    DGVChild.Focus();  // SET FOCUS ON THE CHILD.
}

答案 1 :(得分:0)

这些下面有一条红线?

DGVChild.Columns.Add((DataGridViewColumn)parentColumn.Clone());

这是怎么回事?

DGVChild.Columns.Add(((DataGridViewColumn)parentColumn).Clone());