DataGridView多行选择清除鼠标左键拖放
Posted
技术标签:
【中文标题】DataGridView多行选择清除鼠标左键拖放【英文标题】:DataGridView multirow select clearing on left mouse button drag and drop 【发布时间】:2013-06-03 10:09:01 【问题描述】:我正在尝试为标准 DataGridView 上的多行实现拖放。
我选择 3 行按住控制键和鼠标左键。然后我释放控制键和选择要拖动的行。因此,我使用鼠标左键单击并按住其中一行上的按钮,以便开始拖动动作。
但是,只要我单击其中一行,就会选择该行,而取消选择其他 2 行,因此我不再移动 3 行。
如何解决这个问题?如果我释放鼠标左键(没有 ctrl 键),我只希望该行再次突出显示。这就是 Windows 资源管理器的工作原理。
我在 Visual Studio 2010 中使用 C#4.0。
【问题讨论】:
【参考方案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,我可以将它们用作标准拖动源,并以通常的方式将它们“插入”到其他组件的标准拖放函数中。
【讨论】:
另一种口味在***.com/questions/1942636/…【参考方案2】:我没有更简单的解决方案,但这应该可以。整个想法是将选定行的背景颜色更改为SelectionBackColor
,并将选定行的前景色更改为SelectionForeColor
。他们看起来像是被选中的。我想DataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect
可以轻松获得SelectedRows
,而不是通过单击行标题来选择行。我也想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;
我希望您了解整个想法来自定义它并自己编写代码,例如如果 dataGridView 失去焦点,则恢复 BackColor
和 ForeColor
...
我希望它有所帮助,有人可以提供更好的解决方案!
【讨论】:
以上是关于DataGridView多行选择清除鼠标左键拖放的主要内容,如果未能解决你的问题,请参考以下文章