C# 将项从DataGridView拖放到面板

C# 将项从DataGridView拖放到面板,c#,winforms,datagridview,drag-and-drop,C#,Winforms,Datagridview,Drag And Drop,我已经在DataGridView中搜索了拖放解决方案,但我找到的都是关于对项目重新排序的 但是我有一个DataGridView绑定到SQL server数据库,它使用LINQ to实体,并且重新排序不适用,我只想从DataGridView中拖动一个项目,并以相同的形式将其放到面板上。我该怎么做 我找到的允许重新排序的代码: private Rectangle dragBoxFromMouseDown; private int rowIndexFromMouseDown;

我已经在
DataGridView
中搜索了拖放解决方案,但我找到的都是关于对项目重新排序的

但是我有一个
DataGridView
绑定到SQL server数据库,它使用LINQ to实体,并且重新排序不适用,我只想从
DataGridView
中拖动一个项目,并以相同的形式将其放到面板上。我该怎么做

我找到的允许重新排序的代码:

    private Rectangle dragBoxFromMouseDown;
    private int rowIndexFromMouseDown;
    private int rowIndexOfItemUnderMouseToDrop;

    private void dgvResult_MouseMove(object sender, MouseEventArgs e)
    {
        if ((e.Button & MouseButtons.Left) == MouseButtons.Left)
        {
            // If the mouse moves outside the rectangle, start the drag.
            if (dragBoxFromMouseDown != Rectangle.Empty &&
                !dragBoxFromMouseDown.Contains(e.X, e.Y))
            {

                // Proceed with the drag and drop, passing in the list item.                    
                DragDropEffects dropEffect = dgvResult.DoDragDrop(
                dgvResult.Rows[rowIndexFromMouseDown],
                DragDropEffects.Move);
            }
        }
    }

    private void dgvResult_MouseDown(object sender, MouseEventArgs e)
    {
        // Get the index of the item the mouse is below.
        rowIndexFromMouseDown = dgvResult.HitTest(e.X, e.Y).RowIndex;
        if (rowIndexFromMouseDown != -1)
        {
            // Remember the point where the mouse down occurred. 
            // The DragSize indicates the size that the mouse can move 
            // before a drag event should be started.                
            Size dragSize = SystemInformation.DragSize;

            // Create a rectangle using the DragSize, with the mouse position being
            // at the center of the rectangle.
            dragBoxFromMouseDown = new Rectangle(new Point(e.X - (dragSize.Width / 2),
                                                           e.Y - (dragSize.Height / 2)),
                                dragSize);
        }
        else
            // Reset the rectangle if the mouse is not over an item in the ListBox.
            dragBoxFromMouseDown = Rectangle.Empty;
    }

    private void dgvResult_DragOver(object sender, DragEventArgs e)
    {
        e.Effect = DragDropEffects.Move;
    }

    private void dgvResult_DragDrop(object sender, DragEventArgs e)
    {
        // The mouse locations are relative to the screen, so they must be 
        // converted to client coordinates.
        Point clientPoint = dgvResult.PointToClient(new Point(e.X, e.Y));

        // Get the row index of the item the mouse is below. 
        rowIndexOfItemUnderMouseToDrop =
            dgvResult.HitTest(clientPoint.X, clientPoint.Y).RowIndex;

        // If the drag operation was a move then remove and insert the row.
        if (e.Effect == DragDropEffects.Move)
        {
            DataGridViewRow rowToMove = e.Data.GetData(
                typeof(DataGridViewRow)) as DataGridViewRow;
            dgvResult.Rows.RemoveAt(rowIndexFromMouseDown);
            dgvResult.Rows.Insert(rowIndexOfItemUnderMouseToDrop, rowToMove);

        }
    }
任何在
DataGridView
中拖放的尝试都会引发异常:

除非DataGridView是绑定到支持更改通知并允许删除的IBindingList的数据,否则无法以编程方式删除行


你没有在
面板中解释你想对该行做什么,所以我编了一些东西

您要做的第一件事是设置面板的
AllowDrop=true
。 然后编写
DragEnter
DragDrop
事件的脚本:

private void panel1_DragEnter(object sender, DragEventArgs e)
{
    // we indicate that we allow dropping
    e.Effect = DragDropEffects.Copy;
}

private void panel1_DragDrop(object sender, DragEventArgs e)
{
    // the mousemove has packed a row as data, so we unpack it:
    DataGridViewRow row = e.Data.GetData( typeof(DataGridViewRow)) as DataGridViewRow;
    // not sure what to do with it - store it in the tag
    panel1.Tag = row;
    // let the paint show something
    panel1.Invalidate();
}

private void panel1_Paint(object sender, PaintEventArgs e)
{
    // if we hava data in the tag we cast them to DataGridViewRow..
    // ..and display the content of the 2nd cell
    if (panel1.Tag != null)
        e.Graphics.DrawString( ((DataGridViewRow)panel1.Tag).Cells[1].Value.ToString(), 
                                this.Font, Brushes.DarkRed, 8, 8);
}
请注意,您可以删除
dgvResult_DragDrop
dgvResult_DragOver
事件,因为我们不想删除DGV


当然,绘制操作几乎是随机的。

我已经对最后两行进行了注释,不再出现异常,但我无法将拖动的项目移到
DataGridView
之外。谢谢,我发现这很容易。问题是我不理解拖放的基本原理。