c# – DataGridView多行选择清除鼠标左键拖放

c# – DataGridView多行选择清除鼠标左键拖放,第1张

概述我正在尝试实现Drag&在标准DataGridView上删除多行. 我按住控制键和鼠标左键选择3行.然后我释放控制键以及选择要拖动的行的内容.因此,使用鼠标左键单击并按住其中一行上的按钮,以便我可以开始拖动动作. 但是,只要我单击其中一行,就会选择该行,并取消选择其他两行,这样我就不再移动3行了. 我怎样才能解决这个问题?如果我释放鼠标左键(没有ctrl键),我只希望再次突出显示该行.这就是Win 我正在尝试实现Drag&在标准DataGrIDVIEw上删除多行.

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

但是,只要我单击其中一行,就会选择该行,并取消选择其他两行,这样我就不再移动3行了.

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

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

解决方法 我在项目中遇到了这个问题 – 如何允许用户使用标准方法在datagrIDvIEw中选择一堆行,然后将选择拖到另一个数据网格视图并删除它.我能够构建一个来自 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);    }}

拥有此代码,然后将此自定义组件替换为表单中的所有DataGrIDVIEws允许我将它们用作标准拖动源,并以通常的方式将它们“插入”其他组件的标准拖放功能.

总结

以上是内存溢出为你收集整理的c# – DataGridView多行选择清除鼠标左键拖放全部内容,希望文章能够帮你解决c# – DataGridView多行选择清除鼠标左键拖放所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1229960.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存