将项目从DataGridView拖放到面板

时间:2014-07-30 14:35:47

标签: c# winforms datagridview drag-and-drop

我在DataGridView搜索了一个拖放解决方案,但我找到的只是重新排序这些项目。

但是我所拥有的是使用LINQ to Entities绑定到SQL服务器数据库的DataGridView并且重新排序不适用,我想要的是从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,否则无法以编程方式删除行。

1 个答案:

答案 0 :(得分:2)

你没有解释你想对Panel中的行做什么,所以我做了一些事情......

您要做的第一件事就是设置Panel AllowDrop = true。 然后编写DragEnterDragDrop事件的脚本:

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。

当然,绘画动作几乎是随机的..

相关问题