我怎么能在彼此之下拖放DataGridView行?

Wah*_*tar 25 .net c# drag-and-drop datagridview

DataGridView绑定了一个List<myClass>,然后用" Priority"中的" "属性对其进行排序myClass.所以我想把" DataGridViewRow" 拖到某个位置来改变它的" Priority"属性.

我怎么能"拖放"DataGridView行? 以及如何处理这个?

Wah*_*tar 49

我在MSDN上找到了这个代码示例

请注意以下事项:

1).必须将DataGridView属性AllowDrop设置为true(默认值为false).

2).当DataGridView 不是数据绑定时,下面的示例开箱即用.否则会抛出InvalidOperationException.如果它是数据绑定,你应该操纵的项目的顺序DataSource.

private Rectangle dragBoxFromMouseDown;
private int rowIndexFromMouseDown;
private int rowIndexOfItemUnderMouseToDrop;
private void dataGridView1_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 = dataGridView1.DoDragDrop(
            dataGridView1.Rows[rowIndexFromMouseDown],
            DragDropEffects.Move);
        }
    }
}

private void dataGridView1_MouseDown(object sender, MouseEventArgs e)
{
    // Get the index of the item the mouse is below.
    rowIndexFromMouseDown = dataGridView1.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 dataGridView1_DragOver(object sender, DragEventArgs e)
{
    e.Effect = DragDropEffects.Move;
}

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

    // Get the row index of the item the mouse is below. 
    rowIndexOfItemUnderMouseToDrop =
        dataGridView1.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;
        dataGridView1.Rows.RemoveAt(rowIndexFromMouseDown);
        dataGridView1.Rows.Insert(rowIndexOfItemUnderMouseToDrop, rowToMove);

    }
}
Run Code Online (Sandbox Code Playgroud)

  • 这个非常好的代码片段的一个小问题是:如果你的DGV允许添加行,并且你一直拖动一行到最后,它将删除该行,然后尝试将其插入"虚拟"行,这不是不允许,最终结果是删除的行将被删除(显然不是你想要的).必须检查:this.uxSigningParties.Rows.RemoveAt(rowIndexFromMouseDown); if(rowIndexOfItemUnderMouseToDrop> = this.uxSigningParties.Rows.Count){rowIndexOfItemUnderMouseToDrop--; } (4认同)