4

我正在尝试在标准 DataGridView 上为多行实现拖放。

我选择 3 行按住控制键和鼠标左键。然后我释放控制键和选择要拖动的行。因此,我使用鼠标左键单击并按住其中一行的按钮,以便开始拖动动作。

但是,只要我单击其中一行,就会选择该行,而取消选择其他 2 行,因此我不再移动 3 行。

我怎样才能解决这个问题?如果我释放鼠标左键(没有 ctrl 键),我只希望该行再次突出显示。这就是 Windows 资源管理器的工作方式。

我在 Visual Studio 2010 中使用 C#4.0。

4

2 回答 2

1

我在一个项目中遇到了这个确切的问题——如何允许用户使用标准方法在 datagridview 中选择一堆行,然后将选择拖到另一个 datagrid 视图中并删除它。我能够从http://www.codeproject.com/Tips/338594/Drag-drop-multiple-selected-rows-of-datagridview-w建立一个想法,这只是将 DataGridView 子类化为“可拖动” DataGridView,当用户在已选择的行上按下按钮时捕获鼠标操作,同时允许所有其他情况的标准行为:

public partial class DraggableDataGridView : System.Windows.Forms.DataGridView {

    private Rectangle dragBoxFromMouseDown;

    protected override void OnMouseDown(MouseEventArgs e) {

        // Trap the case where the user pressed the left mouse button on an already-selected row
        // without <shift> or <control>

        if ((e.Button & MouseButtons.Left) == MouseButtons.Left
            && Control.ModifierKeys == Keys.None
            && this.SelectedRows.Count > 0
            && HitTest(e.X, e.Y).RowIndex >= 0
            && this.SelectedRows.Contains(this.Rows[HitTest(e.X, e.Y).RowIndex])
            ) {

                // User pressed the mouse button over an already-selected row without <shift> or <control> so we should 
                // consider drag and drop. Record a rectangle around that mouse location to possibly trigger drag
                // operation

                Debug.WriteLine("MouseDown inside selection");
                Size dragSize = SystemInformation.DragSize;
                dragBoxFromMouseDown = new Rectangle(new Point(e.X - (dragSize.Width / 2), e.Y - (dragSize.Height / 2)), dragSize);

        } else {
            // In other cases use the default behavior for datagridview
            Debug.WriteLine("MouseDown outside selection");
            dragBoxFromMouseDown = Rectangle.Empty;
            base.OnMouseDown(e);
        }
    }

    protected override void OnMouseUp(MouseEventArgs e) {
        base.OnMouseUp(e);
    }

    protected override void OnMouseMove(MouseEventArgs e) {
        if ((e.Button & MouseButtons.Left) == MouseButtons.Left) {
            // If the mouse moves outside the drag limit rectangle, start the drag.
            if (dragBoxFromMouseDown != Rectangle.Empty && !dragBoxFromMouseDown.Contains(e.Location)) {
                // Proceed with the drag and drop, passing in the selected rows
                DragDropEffects dropEffect =
                        this.DoDragDrop(this.SelectedRows, DragDropEffects.Move);
            }
        }
        base.OnMouseMove(e);
    }

    public DraggableDataGridView() {
        InitializeComponent();
    }

    protected override void OnPaint(PaintEventArgs pe) {
        base.OnPaint(pe);
    }
}

有了这段代码,然后用这个自定义组件替换我在表单中的所有 DataGridView,我可以将它们用作标准拖动源,并以通常的方式将它们“插入”到其他组件的标准拖放功能中。

于 2015-11-24T16:01:01.893 回答
0

我没有更简单的解决方案,但这应该可行。整个想法是将选定行的 BackColor 更改为SelectionBackColor,并将选定行的 ForeColor 更改为SelectionForeColor. 他们看起来像是被选中的。我想通过单击行标题来轻松而不是选择行DataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelectSelectedRows我也认为Form.KeyPreview = true

这是我的代码:

//This is to copy the SelectedRows every time user releases the Control key
DataGridViewRow[] selectedRows;
private void dataGridView_CellClick(object sender, DataGridViewCellEventArgs e){
     if(selectedRows == null) return;
     if(!selectedRows.Contains(dataGridView.Rows[e.RowIndex])){
       //Restore the BackColor and ForeColor of the selected rows
       foreach(DataGridViewRow row in selectedRows){
           row.DefaultCellStyle.BackColor = dataGridView.DefaultCellStyle.BackColor;
           row.DefaultCellStyle.ForeColor = dataGridView.DefaultCellStyle.ForeColor;
       }
     }
}
private void form_KeyUp(object sender, KeyEventArgs e){
  if(e.KeyCode == Keys.ControlKey){
     selectedRows = new DataGridViewRow[dataGridView.SelectedRows.Count];
     dataGridView.SelectedRows.CopyTo(selectedRows,0);
     foreach(DataGridViewRow row in selectedRows){
        row.DefaultCellStyle.BackColor = dataGridView.DefaultCellStyle.SelectionBackColor;
        row.DefaultCellStyle.ForeColor = dataGridView.DefaultCellStyle.SelectionForeColor;
     }
  }
}

我希望您了解自定义它和自己编码的整个想法,例如恢复BackColor以及ForeColor如果 dataGridView 失去焦点......

我希望它有所帮助,有人可以提供更好的解决方案!

于 2013-06-03T16:52:16.010 回答