c# – 使用鼠标滚动DataGridView

前端之家收集整理的这篇文章主要介绍了c# – 使用鼠标滚动DataGridView前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
因此,我们都熟悉单击并按住鼠标按钮的功能,然后将鼠标移动到网格的边缘,并且列/行滚动并且选择增加.

我有一个基于DataGridView的控件,由于性能问题,我不得不关闭MultiSelect并自行处理选择过程,现在也禁用了点击保持滚动功能.

有关如何回写此功能的任何建议?

我正在考虑使用像MouseLeave事件这样简单的东西,但我不确定如何确定它留下的位置,以及实现动态滚动速度.

解决方法

只需将此代码添加到Form1_Load即可
DataGridView1.MouseWheel += new MouseEventHandler(DataGridView1_MouseWheel);

这个是针对MouseWheel事件的

void DataGridView1_MouseWheel(object sender,MouseEventArgs e)
{
    int currentIndex = this.DataGridView1.FirstDisplayedScrollingRowIndex;
    int scrollLines = SystemInformation.MouseWheelScrollLines;

    if (e.Delta > 0) 
    {
        this.DataGridView1.FirstDisplayedScrollingRowIndex 
            = Math.Max(0,currentIndex - scrollLines);
    }
    else if (e.Delta < 0)
    {
        this.DataGridView1.FirstDisplayedScrollingRowIndex 
            = currentIndex + scrollLines;
    }
}
原文链接:https://www.f2er.com/csharp/91255.html

猜你在找的C#相关文章