2

いくつかのコードをコピーし、アプリケーションに合わせて変更しました。そして、満足できるまで、コードの微調整とクリーンアップを続けます。しかし、私は小さなエラーに遭遇しました。2 つの datagridviews があり、datagridrows を別のものに移動したいと考えています。ただし、drag&dropイベントはすべて発生dataGridView_Routes_DragDrop()しますが、 にはデータがないため、 は log コマンドを実行しますe.Data.GetData。私は何を間違えましたか?何か不足していますか?いくつかのガイドに目を通そうとしましたが、この問題を特にカバーしているものはありません。

データグリッドがドラッグされたデータグリッド行を他のデータグリッドに渡すにはどうすればよいですか?

    /* Drag & Drop */
    private Rectangle dragBoxFromMouseDown;
    private int rowIndexFromMouseDown;
    private void dataGridView_Trips_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 = dataGridView_Trips.DoDragDrop(dataGridView_Trips.Rows[rowIndexFromMouseDown], DragDropEffects.Copy);
            }
        }
    }

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

    private void dataGridView_Routes_DragDrop(object sender, DragEventArgs e)
    {
        if (e.Data.GetDataPresent(typeof(DataRowView)))
        {
            // The mouse locations are relative to the screen, so they must be 
            // converted to client coordinates.
            Point clientPoint = dataGridView_Routes.PointToClient(new Point(e.X, e.Y));

            // If the drag operation was a copy then add the row to the other control.
            if (e.Effect == DragDropEffects.Copy)
            {
                DataGridViewRow rowToMove = e.Data(typeof(DataGridViewRow)) as DataGridViewRow;
                dataGridView_Routes.Rows.Add(rowToMove);
            }
        }
        else
        {
            log("Geen data! #01", "Fout");
        }
    }
    /* End Drag & Drop */
4

2 に答える 2

4

知らない。ただし、次の機能は調整されており、意図したとおりに機能します。以前のコードがどのように壊れたのかよくわかりません。

編集: typeof は、DataGridViewRow ではなく DataViewRow で記述されました。失敗。

private void dataGridView_Routes_DragDrop(object sender, DragEventArgs e)
    {
        try
        {
            if (e.Data.GetDataPresent(typeof(DataGridViewRow)))
            {

                // The mouse locations are relative to the screen, so they must be 
                // converted to client coordinates.
                Point clientPoint = dataGridView_Routes.PointToClient(new Point(e.X, e.Y));

                // If the drag operation was a copy then add the row to the other control.
                if (e.Effect == DragDropEffects.Copy)
                {
                    DataGridViewRow Row = (DataGridViewRow)e.Data.GetData(typeof(DataGridViewRow));
                    dataGridView_Routes.Rows.Add(Row.Cells[0].Value, Row.Cells[1].Value, Row.Cells[2].Value);
                }
            }
            else
            {
                log("Geen data! #01", "Fout");
            }
        }
        catch (Exception msg)
        {
            log(msg.Message,"Fout");
        }
    }
于 2013-01-08T11:43:13.773 に答える